aboutsummaryrefslogtreecommitdiffhomepage
path: root/bin/git-dch
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-10-30 20:03:33 +0100
committerGuido Günther <agx@sigxcpu.org>2011-11-01 18:12:48 +0100
commite28ea0740a7b4eb2ef4c1bd3079d77a40c6072b8 (patch)
tree779145e71a996c471a1d1a6b1acde1bc90deecc4 /bin/git-dch
parentabf90abcba15beb51196cf503f35695acdcd91c1 (diff)
Get rid of the symlink
by moving the commands to gbp/scripts/
Diffstat (limited to 'bin/git-dch')
-rwxr-xr-xbin/git-dch5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/git-dch b/bin/git-dch
new file mode 100755
index 00000000..68eacd9d
--- /dev/null
+++ b/bin/git-dch
@@ -0,0 +1,5 @@
+#! /usr/bin/python -u
+import sys
+from gbp.scripts.dch import main
+
+sys.exit(main(sys.argv))