From: nbd Date: Wed, 8 Oct 2008 19:15:26 +0000 (+0000) Subject: scripts/env: fix file syncing on env switch X-Git-Url: http://git.rohieb.name/openwrt.git/commitdiff_plain/533b90d6d47d2eb67e06c4042cf4ac1551faafb5?ds=inline;hp=f88abc84c9c26676ecc49b7de973b96a71dac5b3 scripts/env: fix file syncing on env switch git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12925 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/scripts/env b/scripts/env index 642a329c1..65594f9a5 100755 --- a/scripts/env +++ b/scripts/env @@ -119,12 +119,12 @@ env_revert() { } env_ask_sync() { + env_sync_data LINES="$(env_diff | wc -l)" # implies env_init [ "$LINES" -gt 0 ] && { if ask_bool 1 "Do you want to save your changes"; then env_sync else - env_sync_data env_do_reset fi }