diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-01-05 18:32:36 -0800 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-07-11 13:33:28 +0200 |
commit | e68810ba5352d7db89a9975f2a2a8951fc9d5b2b (patch) | |
tree | 320677a20f04044beac6a340d4669c0e32039e3c /scripts | |
parent | 56f813674a912490df327304033bf667b285930a (diff) | |
download | upstream-e68810ba5352d7db89a9975f2a2a8951fc9d5b2b.tar.gz upstream-e68810ba5352d7db89a9975f2a2a8951fc9d5b2b.tar.bz2 upstream-e68810ba5352d7db89a9975f2a2a8951fc9d5b2b.zip |
scripts/env: replace \! with !
The latter is more standard. The former throws an error under
shellcheck.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/env | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/env b/scripts/env index 563f39c1cf..19cfa13841 100755 --- a/scripts/env +++ b/scripts/env @@ -73,7 +73,7 @@ env_init() { } env_sync_data() { - [ \! -L "$BASEDIR/.config" ] && [ -f "$BASEDIR/.config" ] && mv "$BASEDIR/.config" "$ENVDIR" + [ ! -L "$BASEDIR/.config" ] && [ -f "$BASEDIR/.config" ] && mv "$BASEDIR/.config" "$ENVDIR" git add . git add -u } @@ -195,7 +195,7 @@ env_new() { git checkout -b "$1" "$from" if [ -f "$BASEDIR/.config" ] || [ -d "$BASEDIR/files" ]; then if ask_bool 1 "Do you want to start your configuration repository with the current configuration?"; then - if [ -d "$BASEDIR/files" ] && [ \! -L "$BASEDIR/files" ]; then + if [ -d "$BASEDIR/files" ] && [ ! -L "$BASEDIR/files" ]; then mkdir -p "$ENVDIR/files" shopt -s dotglob mv "$BASEDIR/files/"* "$ENVDIR/files/" 2>/dev/null |