summarylogtreecommitdiffstats
path: root/gittify.install
diff options
context:
space:
mode:
Diffstat (limited to 'gittify.install')
-rw-r--r--gittify.install3
1 files changed, 2 insertions, 1 deletions
diff --git a/gittify.install b/gittify.install
index d7b235dca14e..88df215b9fef 100644
--- a/gittify.install
+++ b/gittify.install
@@ -1,4 +1,5 @@
post_install() {
+ echo "New configs are available in /etc/gittify/gitconfig.base"
cat /etc/gittify/gitconfig.base | sed 's/#.*//g' | gawk '{ sub(/[\t ]*/, ""); if (/\[(.*)\]/) { prefix=substr($0, 2, length()-2); } else if ($0 ~ /[^\t ]/) { print prefix"."$0; } }' | sed 's/ = /\n/' | while read name; do
read value;
if git config --system "$name" > /dev/null; then
@@ -8,7 +9,7 @@ post_install() {
git config --system "$name" "$value"
fi
done
- echo "Done. Run gittify in any git repo to start."
+ echo "Run gittify in any git repo to start."
}
post_upgrade() {