copy scripts

This commit is contained in:
Robert Habermeier
2018-08-15 13:40:49 +02:00
parent f85fcd4fc2
commit 670fc459b2
8 changed files with 389 additions and 126 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/usr/bin/env bash
ROOT=`dirname "$0"`
# A list of directories which contain wasm projects.
SRCS=(
"runtime/wasm"
)
DEMOS=(
"test-parachains/"
)
# Make pushd/popd silent.
pushd () {
command pushd "$@" > /dev/null
}
popd () {
command popd "$@" > /dev/null
}