summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog3
-rwxr-xr-xusing-these8
2 files changed, 10 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index 360e372..9286859 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
dgit (4.1~) experimental; urgency=medium
- *
+ Internal changes:
+ * using-these: New script to help with ad-hoc-testing.
--
diff --git a/using-these b/using-these
new file mode 100755
index 0000000..0bcb4b1
--- /dev/null
+++ b/using-these
@@ -0,0 +1,8 @@
+#!/bin/bash
+set -e
+d="${0%/*}"
+PERLLIB=$d${PERLLIB:+:}${PERLLIB}
+export PERLLIB
+PATH=$d:$d/infra${PATH:+:}${PATH}
+export PATH
+exec "$@"