lib/tests/modules.sh: Don't depend on $PWD

This commit is contained in:
Silvan Mosberger 2020-03-14 20:06:04 +01:00
parent 124cccbe3b
commit 0bc7f3440a
No known key found for this signature in database
GPG key ID: E8F1E9EAD284E17D

View file

@ -3,7 +3,10 @@
# This script is used to test that the module system is working as expected.
# By default it test the version of nixpkgs which is defined in the NIX_PATH.
cd ./modules
# https://stackoverflow.com/a/246128/6605742
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
cd "$DIR"/modules
pass=0
fail=0