We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6dad9c commit 546d058Copy full SHA for 546d058
bin/auto-build-and-test-dist
@@ -7,7 +7,7 @@ BUILD_DIR=${BUILD_DIR:='build_dir'}
7
cpan-install-build-deps
8
build-dist
9
10
-cd $BUILD_DIR
+cd "$BUILD_DIR"
11
12
cpan-install-dist-deps --with-develop
13
test-dist
bin/build-dist
@@ -25,7 +25,7 @@ elif [[ -e Build.PL ]]; then
25
# Module::Build does not support a build directory, so we have to find
26
# the last created dir and use that.
27
DIR="$(perl -MModule::Build -e'print Module::Build->resume->dist_dir;')"
28
- mv "$DIR" $BUILD_DIR
+ mv "$DIR" "$BUILD_DIR"
29
fi
30
31
exit 0
0 commit comments