Skip to content

Commit 6ce76cd

Browse files
committed
fix: build
1 parent 52cc89f commit 6ce76cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flightSelection-backend/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ task("cleanNestJs") {
3030

3131
task("buildNestJs") {
3232
if (project.hasProperty("withNestJs")) {
33-
providers.exec {
33+
execOperations.exec {
3434
logger.info("Task buildNestJs - npm install")
3535
workingDir("src/nestjs")
3636
if (System.getProperty("os.name").uppercase().contains("WINDOWS")) {
@@ -39,7 +39,7 @@ task("buildNestJs") {
3939
commandLine("npm", "install")
4040
}
4141
}.result.get()
42-
providers.exec {
42+
execOperations.exec {
4343
logger.info("Task buildNestJs - npm run build")
4444
workingDir("src/nestjs")
4545
if (System.getProperty("os.name").uppercase().contains("WINDOWS")) {

0 commit comments

Comments
 (0)