Files
pezkuwi-subxt/substrate/scripts/common.sh
T
Robert Habermeier 4eefa5ee60 update script targets
2018-08-15 13:43:41 +02:00

24 lines
311 B
Bash

#!/usr/bin/env bash
ROOT=`dirname "$0"`
# A list of directories which contain wasm projects.
SRCS=(
"substrate/executor/wasm"
)
DEMOS=(
"demo/runtime/wasm"
"substrate/test-runtime/wasm"
)
# Make pushd/popd silent.
pushd () {
command pushd "$@" > /dev/null
}
popd () {
command popd "$@" > /dev/null
}