mirror of
https://github.com/gradle/actions
synced 2024-11-27 11:52:24 +00:00
11 lines
106 B
Text
11 lines
106 B
Text
|
#!/bin/bash
|
||
|
|
||
|
cd sources
|
||
|
npm install
|
||
|
|
||
|
if [ "$1" == "all" ]; then
|
||
|
npm run all
|
||
|
else
|
||
|
npm run build
|
||
|
fi
|