summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-03-22 18:33:00 +0000
committerLars Wirzenius <lars.wirzenius@codethink.co.uk>2012-03-22 18:33:00 +0000
commitb64a08879c6c6c7e57625ce8c339ce33af193cc4 (patch)
tree285033917a1aaff8edb3ac9948bf6a8b0acaab32 /scripts
parent7286464a9feed92910fa57185d9eeefcb4da8a3c (diff)
downloadmorph-b64a08879c6c6c7e57625ce8c339ce33af193cc4.tar.gz
Create dummy git repositories for morphs, hello
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/run-git-in25
1 files changed, 25 insertions, 0 deletions
diff --git a/scripts/run-git-in b/scripts/run-git-in
new file mode 100755
index 00000000..55bc3ecd
--- /dev/null
+++ b/scripts/run-git-in
@@ -0,0 +1,25 @@
+#!/bin/sh
+# Copyright (C) 2012 Codethink Limited
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; version 2 of the License.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+
+# Run git in a given directory.
+
+
+set -eu
+
+cd "$1"
+shift
+exec git "$@"