diff options
author | davidovski <david@davidovski.xyz> | 2022-07-31 22:10:14 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-07-31 22:10:14 +0100 |
commit | 365412b61b6cfefac353fcce7d0bb470ee8953b0 (patch) | |
tree | 4c0e12c1f0f060da013c8272eee707cf7bc0dd2b /deploy.sh | |
parent | a4e5fe820e63d9a9bc7e101aa8c63ae9e6c13c3b (diff) | |
parent | 561d903ee3e171a28a976b3b321833396503ca33 (diff) |
Merge branch 'master' of git.cheetah.remote:dot
Diffstat (limited to 'deploy.sh')
-rwxr-xr-x | deploy.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ load () { printf "\033[31mWARNING THIS WILL REPLACE EXISTING CONFIGURATIONS\n\033[0mTo proceed type 'confirm': " read confirmation - if [[ $confirmation == "confirm" ]]; then + if [ $confirmation = "confirm" ]; then mkdir -p $HOME/.config cp -r config/* $HOME/.config mkdir -p $HOME/.scripts |