don't include * in quotes

This commit is contained in:
AJ ONeal 2018-07-26 20:51:20 +00:00
parent 45adb12ae1
commit 4ea01c4c42
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ if [ -n "${NODEJS_VER}" ]; then
rsync -a "${NODEJS_UNTAR}/" "$node_install_path/" || $sudo_cmd rsync -a "${NODEJS_UNTAR}/" "$node_install_path/"
else
echo $sudo_cmd cp -a "${NODEJS_UNTAR}/*" "$node_install_path/"
cp -a "${NODEJS_UNTAR}/*" "$node_install_path/" || $sudo_cmd cp -a "${NODEJS_UNTAR}/*" "$node_install_path/"
cp -a "${NODEJS_UNTAR}"/* "$node_install_path/" || $sudo_cmd cp -a "${NODEJS_UNTAR}"/* "$node_install_path/"
fi
rm -rf "${NODEJS_UNTAR}"