Bugfix: add-project was failing to call nimble setup when the added project was a full URL

This commit is contained in:
Zahary Karadjov 2022-08-26 18:54:04 +03:00
parent 70a4824157
commit 7a3d4d07c1
No known key found for this signature in database
GPG Key ID: C1F42EAFF38D570F
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ done
for p in $@
do
pushd $p
pushd "$(basename $p)"
nimble setup
popd
done