diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-11-19 17:15:53 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-11-19 17:15:53 +0000 |
commit | a97304cf61f18ec35c4f9305970ed0014f83b6d4 (patch) | |
tree | 2af1d4e7b1fee3cc0aa7ef9321bd802a15bb28b3 | |
parent | 6b929e268734f6a212aab2f0f470684e82f3d24b (diff) | |
download | upstream-a97304cf61f18ec35c4f9305970ed0014f83b6d4.tar.gz upstream-a97304cf61f18ec35c4f9305970ed0014f83b6d4.tar.bz2 upstream-a97304cf61f18ec35c4f9305970ed0014f83b6d4.zip |
scripts/env: improve the wording of the question when starting repository (patch by Rolf Leggewie)
SVN-Revision: 29262
-rwxr-xr-x | scripts/env | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/env b/scripts/env index ebd2dac38e..80e08ec4ab 100755 --- a/scripts/env +++ b/scripts/env @@ -192,7 +192,7 @@ env_new() { fi git checkout -b "$1" "$from" if [ -f "$BASEDIR/.config" -o -d "$BASEDIR/files" ]; then - if ask_bool 1 "Do you want to keep your current config and files?"; then + if ask_bool 1 "Do you want to start your configuration repository with the current configuration?"; then [ -d "$BASEDIR/files" -a \! -L "$BASEDIR/files" ] && { mkdir -p "$ENVDIR/files" shopt -s dotglob |