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