summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorRasmus Andersson <rasmus@notion.se>2020-05-18 18:47:33 +0300
committerRasmus Andersson <rasmus@notion.se>2020-05-18 18:47:33 +0300
commit717605c5cd173ff84690c2daf51c1b54589278d9 (patch)
tree7b87170a96baf0381539248444f9caa09e91fe06 /misc
parent996c6f4f8137aa1a098f61471ec3a1ff6edc2cc6 (diff)
downloadinter-717605c5cd173ff84690c2daf51c1b54589278d9.tar.xz
tooling: Remove dockermake and fix a mkdir issue in init.sh. Closes #277
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/tools/dockermake11
1 files changed, 11 insertions, 0 deletions
diff --git a/misc/tools/dockermake b/misc/tools/dockermake
new file mode 100755
index 000000000..3a6e21901
--- /dev/null
+++ b/misc/tools/dockermake
@@ -0,0 +1,11 @@
+#!/bin/bash -e
+#
+# Runs make in a prebuilt docker image.
+# All you need to have installed is docker for this to work.
+# This is an alternative to building locally.
+#
+cd "$(dirname "$0")"
+if [[ -d .git ]]; then
+ git rev-parse --short HEAD > githash.txt
+fi
+docker run --rm -it -v "$PWD:/host" rsms/inter-build:latest make -r -R "$@"