diff options
author | John Crispin <john@openwrt.org> | 2011-04-01 11:07:27 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2011-04-01 11:07:27 +0000 |
commit | e42e2b3e9cf470dd2c8da497a8a87500f5451a53 (patch) | |
tree | 63608555ccc758f9cb968efa7e30f6e644a35309 /scripts | |
parent | 9fd342d91377b56426ae756689a32d2416df0914 (diff) | |
download | upstream-e42e2b3e9cf470dd2c8da497a8a87500f5451a53.tar.gz upstream-e42e2b3e9cf470dd2c8da497a8a87500f5451a53.tar.bz2 upstream-e42e2b3e9cf470dd2c8da497a8a87500f5451a53.zip |
path expansion was broken due to a badly quoted *
Signed-of-by: Benjamin Cama <benoar@dolka.fr>
SVN-Revision: 26391
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 882b42a49a..ebfbb70c5c 100755 --- a/scripts/env +++ b/scripts/env @@ -138,7 +138,7 @@ env_clear() { env_sync_data if ask_bool 1 "Do you want to keep your current config and files"; then mkdir -p "$BASEDIR/files" - cp -a "$ENVDIR/files/*" "$BASEDIR/files" 2>/dev/null >/dev/null + cp -a "$ENVDIR/files/"* "$BASEDIR/files" 2>/dev/null >/dev/null cp "$ENVDIR/.config" "$BASEDIR/" else rm -rf "$BASEDIR/files" "$BASEDIR/.config" @@ -193,7 +193,7 @@ env_new() { if ask_bool 1 "Do you want to keep your current config and files?"; then [ -d "$BASEDIR/files" -a \! -L "$BASEDIR/files" ] && { mkdir -p "$ENVDIR/files" - mv "$BASEDIR/files/*" "$ENVDIR/files/" 2>/dev/null + mv "$BASEDIR/files/"* "$ENVDIR/files/" 2>/dev/null rmdir "$BASEDIR/files" } env_sync |