fix automation build

This commit is contained in:
2026-04-24 20:50:58 +03:00
parent 82cae4e556
commit afacc2d88b
2 changed files with 27 additions and 14 deletions
+2 -1
View File
@@ -87,7 +87,8 @@ tasks.register('buildAngular_prod', Exec) {
group = "_jambotron_build"
workingDir './jambotron-ui' // Path to your Angular project (e.g., './angular-app')
executable 'npm.cmd' // Use 'npm' for Unix-like systems or 'npm.cmd' for Windows
// Use 'npm' for Unix-like systems or 'npm.cmd' for Windows
executable = Os.isFamily(Os.FAMILY_WINDOWS) ? 'npm.cmd' : 'npm'
// Your Angular build command
args = ['run', 'build']