summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-03-28 03:06:55 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-03-28 03:06:55 +0200
commit0c9fca670b86871f111e1cda82ac8f70605992be (patch)
treeb879cb81743c4bdf576bbcf69c494681a6e7b50f /scripts
parent6692b15f8bd7ffc742cce5b67b963b458f87f8b6 (diff)
add first step to get java working
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/sha256sum7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/sha256sum b/scripts/sha256sum
new file mode 100755
index 000000000..3c0a706c7
--- /dev/null
+++ b/scripts/sha256sum
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+tmp=$(mktemp -t yyy)
+cat - > $tmp
+shasum -a 256 "$@" $tmp