mirror of
https://github.com/gradle/actions.git
synced 2025-04-21 02:09:19 +08:00
11 lines
106 B
Plaintext
11 lines
106 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
cd sources
|
||
|
npm install
|
||
|
|
||
|
if [ "$1" == "all" ]; then
|
||
|
npm run all
|
||
|
else
|
||
|
npm run build
|
||
|
fi
|