Execute nimble setup automatically after cloning

This commit is contained in:
Zahary Karadjov 2022-04-17 12:06:42 +02:00
parent 71de64d6c1
commit 325e03f419
No known key found for this signature in database
GPG Key ID: C8936F8A3073D609
1 changed files with 7 additions and 0 deletions

View File

@ -28,3 +28,10 @@ for p in $@
do
_add_project "$p"
done
for p in $@
do
pushd $p
nimble setup
popd
done