libp2p-ts/build.sh
2018-06-21 09:54:24 +02:00

21 lines
405 B
Bash
Executable File

#!/bin/bash
# Copyright 2017-2018 @polkadot/dev authors & contributors
# This software may be modified and distributed under the terms
# of the ISC license. See the LICENSE file for details.
rm -rf build
mkdir -p build
DIRS=( $(ls -1d *) )
for DIR in "${DIRS[@]}"; do
if [ -d "$DIR" ] && [ -f "$DIR/index.d.ts" ]; then
echo ""
echo "*** Copying $DIR"
cp -r $DIR build/
fi
done
exit 0