You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
%require
npfv=${NPF_VERSION}
function version { echo "$@" | awk -F. '{ printf("%d%03d%03d%03d\n", $1,$2,$3,$4); }'; }
if [ -z "$npfv" $(version $npfv) -lt $(version "2.0.1") ]; then
echo "You must update NPF (current version $npfv)! v2 is only available through NPF's github branch. Set the path in launch.sh."
exit 1
fi
We need a way to specify a script needs a specific version of NPF
In the %require section it will only start at the same time than tests.
Maybe a new section, a "%globalrequire" that runs directly before any test, or a config option like npf_min_ver=1.1.0
The text was updated successfully, but these errors were encountered: