1
0
mirror of https://github.com/oceanprotocol/commons.git synced 2023-03-15 18:03:00 +01:00
commons/scripts/build.sh

13 lines
168 B
Bash
Raw Normal View History

2019-03-24 02:18:53 +01:00
#/usr/bin/env/sh
set -e
components="server client"
for component in $components
do
echo "Building: $component"
cd $component
npm run build
cd ..
done