Refactor build scripts.

This commit is contained in:
Sergey Pepyakin
2018-06-08 18:07:15 +03:00
parent 14675edcbc
commit ca48416968
14 changed files with 96 additions and 55 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
ROOT=`dirname "$0"`
# A list of directories which contain wasm projects.
SRCS=(
"polkadot/runtime/wasm"
"substrate/executor/wasm"
"demo/runtime/wasm"
"substrate/test-runtime/wasm"
"polkadot/parachain/test-chains/basic_add"
)
# Make pushd/popd silent.
pushd () {
command pushd "$@" > /dev/null
}
popd () {
command popd "$@" > /dev/null
}