mirror of
https://github.com/gradle/actions
synced 2024-11-27 11:52:24 +00:00
Replace sources/build with top-level ./build script
This commit is contained in:
parent
ab471b0c20
commit
1105cf252a
3 changed files with 10 additions and 8 deletions
10
build
Executable file
10
build
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd sources
|
||||
npm install
|
||||
|
||||
if [ "$1" == "all" ]; then
|
||||
npm run all
|
||||
else
|
||||
npm run build
|
||||
fi
|
|
@ -1,4 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd sources
|
||||
npm run build
|
|
@ -1,4 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
cd sources
|
||||
npm run all
|
Loading…
Reference in a new issue