From 73188e18a0967551f5d502793717a981fb27a688 Mon Sep 17 00:00:00 2001 From: Mathieu Clabaut Date: Fri, 21 Dec 2007 15:47:30 -0600 Subject: pre-apt.d : Translation into mercurial idiom --- hg/pre-apt.d/50uncommitted-changes | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'hg/pre-apt.d/50uncommitted-changes') diff --git a/hg/pre-apt.d/50uncommitted-changes b/hg/pre-apt.d/50uncommitted-changes index d39401c..62d62c3 100644 --- a/hg/pre-apt.d/50uncommitted-changes +++ b/hg/pre-apt.d/50uncommitted-changes @@ -1,18 +1,18 @@ #!/bin/sh set -e -if [ -d .git ] && ! LANG=C git-status 2>&1 | grep -q "working directory clean"; then +if [ -d .hg ] && ! hg status 2>&1 | wc -l | grep -q "^0$"; then . /usr/share/debconf/confmodule db_capb escape db_title etckeeper db_reset etckeeper/unclean || true - db_subst etckeeper/unclean STATUS $(git-status | debconf-escape -e) || true + db_subst etckeeper/unclean STATUS $(hg status | debconf-escape -e) || true db_input critical etckeeper/unclean || true db_go || true db_get etckeeper/unclean if [ "$RET" = true ]; then - git add . - if ! git commit $GIT_COMMIT_OPTIONS -m "saving uncommitted changes in /etc prior to apt run"; then + hg addremove . + if ! hg commit $GIT_COMMIT_OPTIONS -m "saving uncommitted changes in /etc prior to apt run"; then db_input critical etckeeper/commit_failed || true db_go || true db_reset etckeeper/commit_failed || true -- cgit v1.2.3