From: Michael Tremer Date: Wed, 21 Jan 2009 20:56:56 +0000 (+0100) Subject: Fixed rootfile commit function. X-Git-Tag: v3.0-alpha1~92 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee9afcd65db44f9b2bf591589820a3f8260eccc0;p=ipfire-3.x.git Fixed rootfile commit function. --- diff --git a/tools/make-rootfiles b/tools/make-rootfiles index 902ce612b..249bdbe5b 100644 --- a/tools/make-rootfiles +++ b/tools/make-rootfiles @@ -78,8 +78,10 @@ rootfiles_check() { } rootfiles_commit() { - rootfiles_check - git_commit -m "Rootfile update." $ROOTFILES_DIR + TEMPFILE=$(mktemp) + echo "Rootfile update" > $TEMPFILE + git_commit -F $TEMPFILE src/rootfiles + rm -f $TEMPFILE } rootfiles_copy() {