From: Richard Hartmann Date: Sat, 30 Mar 2013 23:11:58 +0000 (+0100) Subject: Merge branch 'debbug-699093' X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/ce82402aecaca10b283859fe4f198d470d386970?hp=9d09f3e23ef8381223e95dd589f2b18c6623327b Merge branch 'debbug-699093' --- diff --git a/changelog b/changelog index 52c7ed2..a3c51ba 100644 --- a/changelog +++ b/changelog @@ -1,3 +1,9 @@ +2013-02-13 Richard Hartmann + + * Release 1.0.1 + * Improve documentation + * Fix parameter bug + 2012-06-30 Richard Hartmann * Release 1.0 diff --git a/vcsh b/vcsh index 194bb21..f222fff 100755 --- a/vcsh +++ b/vcsh @@ -138,7 +138,7 @@ clone() { delete() { cd "$VCSH_BASE" || fatal "could not enter '$VCSH_BASE'" 11 use - info "This operation WILL DETROY DATA!" + info "This operation WILL DESTROY DATA!" files=$(git ls-files) echo "These files will be deleted: @@ -151,7 +151,7 @@ To continue, type 'Yes, do as I say'" for file in $files; do rm -f $file || info "could not delete '$file', continuing with deletion" done - rm -r "$GIT_DIR" || error "could not delete '$GIT_DIR'" + rm -rf "$GIT_DIR" || error "could not delete '$GIT_DIR'" } enter() {