diff options
author | Abouzar Parvan <[email protected]> | 2021-08-31 11:55:12 +0430 |
---|---|---|
committer | GitHub <[email protected]> | 2021-08-31 11:55:12 +0430 |
commit | b721178a248e5287a73bfa985ab8035af100a814 (patch) | |
tree | e2e55ff696ad8a4f4047430e08e1b7b1d5a221d2 | |
parent | ed5559d259e38a78796a7d81421f02ba6dafac4b (diff) |
fix installer issue
-rwxr-xr-x | utils/installer/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/installer/install.sh b/utils/installer/install.sh index 9e198274..c39f6c8e 100755 --- a/utils/installer/install.sh +++ b/utils/installer/install.sh @@ -214,7 +214,7 @@ function backup_old_config() { rsync --archive -hh --partial --progress --cvs-exclude \ --modify-window=1 "$dir"/ "$dir.bak" else - cp -R "$dir/*" "$dir.bak/." + cp -R "$dir/"* "$dir.bak/." fi done echo "Backup operation complete" |