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