scripts/env: fix file syncing on env switch

SVN-Revision: 12925
This commit is contained in:
Felix Fietkau 2008-10-08 19:15:26 +00:00
parent 0f62f10e2d
commit 02052624df

View File

@ -119,12 +119,12 @@ env_revert() {
} }
env_ask_sync() { env_ask_sync() {
env_sync_data
LINES="$(env_diff | wc -l)" # implies env_init LINES="$(env_diff | wc -l)" # implies env_init
[ "$LINES" -gt 0 ] && { [ "$LINES" -gt 0 ] && {
if ask_bool 1 "Do you want to save your changes"; then if ask_bool 1 "Do you want to save your changes"; then
env_sync env_sync
else else
env_sync_data
env_do_reset env_do_reset
fi fi
} }