diff options
author | Tristan Williams <tgwil@tgwil.net> | 2024-10-14 03:07:09 -0400 |
---|---|---|
committer | Tristan Williams <tgwil@tgwil.net> | 2024-10-14 03:07:09 -0400 |
commit | b8e08b7385c621120f026bd6c6bc2ae148f6acbd (patch) | |
tree | 9f8bed39424eb2cce4e3701c6a4f5131b4d7ffb0 | |
parent | Massive change, fuck it (diff) | |
download | dotfiles.core-b8e08b7385c621120f026bd6c6bc2ae148f6acbd.tar.gz dotfiles.core-b8e08b7385c621120f026bd6c6bc2ae148f6acbd.tar.bz2 dotfiles.core-b8e08b7385c621120f026bd6c6bc2ae148f6acbd.zip |
Bugfix: = should be ==
-rwxr-xr-x | new-user-setup.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/new-user-setup.sh b/new-user-setup.sh index adac48b..c58e90d 100755 --- a/new-user-setup.sh +++ b/new-user-setup.sh | |||
@@ -246,7 +246,7 @@ while | |||
246 | echo -e "${WARN}ERROR : Invalid selection, try again...${ENDCOLOR}" | 246 | echo -e "${WARN}ERROR : Invalid selection, try again...${ENDCOLOR}" |
247 | dotfiles_invalid_selection=1;; | 247 | dotfiles_invalid_selection=1;; |
248 | esac | 248 | esac |
249 | [[ $dotfiles_invalid_selection=1 ]] | 249 | [[ $dotfiles_invalid_selection==1 ]] |
250 | do true; done | 250 | do true; done |
251 | 251 | ||
252 | 252 | ||