fix(deploy): fix the mv command causing deploy to exit

See #32.
This commit is contained in:
Glavin Wiechert 2014-10-29 00:37:46 -03:00
Родитель f577977327
Коммит ef7e241d0a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -41,8 +41,8 @@ if [[ -z $(git status -s) ]]; then
# Move up dist/ to current directory for deploying
echo "Move the build files in ${destDir}/ up to the current directory for deploying"
mv ${destDir}/* .[^.]* .
mv ${destDir}/* .[^.]* . || true
echo "Remove directory ${destDir}/"
rm -r "${destDir}/"