Quote directory

git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@525998 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Carlos Sanchez Gonzalez 2007-04-05 23:00:31 +00:00
parent 14ea0c817b
commit 0511e42a64
1 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
#!/bin/sh
[ -z $LOCAL_REPO ] && echo && echo "Set your LOCAL_REPO envar!" && echo && exit
[ -z "$LOCAL_REPO" ] && echo && echo "Set your LOCAL_REPO envar!" && echo && exit
echo "Using $LOCAL_REPO ..."
mv ${LOCAL_REPO} ${LOCAL_REPO}.its
mv "${LOCAL_REPO}" "${LOCAL_REPO}.its"
mvn -N install
@ -26,4 +26,4 @@ mvn -N install
ret=$?; if [ $ret != 0 ]; then exit $ret; fi
)
mv ${LOCAL_REPO}.its ${LOCAL_REPO}
mv "${LOCAL_REPO}.its" "${LOCAL_REPO}"