mirror of
https://github.com/gradle/actions.git
synced 2026-06-03 18:32:19 +00:00
11 lines
106 B
Python
Executable File
11 lines
106 B
Python
Executable File
#!/bin/bash
|
|
|
|
cd sources
|
|
npm install
|
|
|
|
if [ "$1" == "all" ]; then
|
|
npm run all
|
|
else
|
|
npm run build
|
|
fi
|