diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-11-19 17:15:50 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-11-19 17:15:50 +0000 |
commit | 6b929e268734f6a212aab2f0f470684e82f3d24b (patch) | |
tree | a34f01afb51a361ab9af2e96e35021c7e5e63d07 /scripts | |
parent | b9eb659364ea15cc1495140de043984f8bef1b41 (diff) | |
download | upstream-6b929e268734f6a212aab2f0f470684e82f3d24b.tar.gz upstream-6b929e268734f6a212aab2f0f470684e82f3d24b.tar.bz2 upstream-6b929e268734f6a212aab2f0f470684e82f3d24b.zip |
scripts/env: make mv and cp operations more robust (treat dotfiles appropriately) (based on patch by Rolf Leggewie)
SVN-Revision: 29261
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/env | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/env b/scripts/env index c9eab5dfab..ebd2dac38e 100755 --- a/scripts/env +++ b/scripts/env @@ -138,7 +138,9 @@ env_clear() { env_sync_data if ask_bool 1 "Do you want to keep your current config and files"; then mkdir -p "$BASEDIR/files" + shopt -s dotglob cp -a "$ENVDIR/files/"* "$BASEDIR/files" 2>/dev/null >/dev/null + shopt -u dotglob cp "$ENVDIR/.config" "$BASEDIR/" else rm -rf "$BASEDIR/files" "$BASEDIR/.config" @@ -193,7 +195,9 @@ 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" + shopt -s dotglob mv "$BASEDIR/files/"* "$ENVDIR/files/" 2>/dev/null + shopt -u dotglob rmdir "$BASEDIR/files" } env_sync |