Files
pezkuwi-subxt/polkadot/scripts/common.sh
T
Robert Habermeier 670fc459b2 copy scripts
2018-08-15 13:40:49 +02:00

23 lines
268 B
Bash

#!/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
}