diff --git a/test/0-init-fail-json.sh b/test/0-init-fail-json.sh index 1a00eb8..63ebb5a 100755 --- a/test/0-init-fail-json.sh +++ b/test/0-init-fail-json.sh @@ -3,7 +3,7 @@ packname="0-init-fail-pack" deps="logger PACKAGE_DONT_EXIST" # would be very unlucky if it does exist... -$DUB init $packname $deps -f json +$DUB init -n $packname $deps -f json function cleanup { rm -rf $packname diff --git a/test/0-init-fail.sh b/test/0-init-fail.sh index f8cc21f..db594b2 100755 --- a/test/0-init-fail.sh +++ b/test/0-init-fail.sh @@ -3,7 +3,7 @@ packname="0-init-fail-pack" deps="logger PACKAGE_DONT_EXIST" # would be very unlucky if it does exist... -$DUB init $packname $deps +$DUB init -n $packname $deps function cleanup { rm -rf $packname diff --git a/test/0-init-multi-json.sh b/test/0-init-multi-json.sh index bc16fd8..8e0a441 100755 --- a/test/0-init-multi-json.sh +++ b/test/0-init-multi-json.sh @@ -4,7 +4,7 @@ deps="openssl logger" type="vibe.d" -$DUB init $packname $deps --type=$type -f json +$DUB init -n $packname $deps --type=$type -f json function cleanup { rm -rf $packname diff --git a/test/0-init-multi.sh b/test/0-init-multi.sh index 89d50b7..5f74a3d 100755 --- a/test/0-init-multi.sh +++ b/test/0-init-multi.sh @@ -4,7 +4,7 @@ deps="openssl logger" type="vibe.d" -$DUB init $packname $deps --type=$type --format sdl +$DUB init -n $packname $deps --type=$type --format sdl function cleanup { rm -rf $packname diff --git a/test/0-init-simple-json.sh b/test/0-init-simple-json.sh index 80a07ff..a18bd3d 100755 --- a/test/0-init-simple-json.sh +++ b/test/0-init-simple-json.sh @@ -2,7 +2,7 @@ packname="0-init-simple-pack" -$DUB init $packname -f json +$DUB init -n $packname -f json function cleanup { rm -rf $packname diff --git a/test/0-init-simple.sh b/test/0-init-simple.sh index 900bddc..6b25f5a 100755 --- a/test/0-init-simple.sh +++ b/test/0-init-simple.sh @@ -2,7 +2,7 @@ packname="0-init-simple-pack" -$DUB init $packname --format sdl +$DUB init -n $packname --format sdl function cleanup { rm -rf $packname