From 441e30ce11eeb9e8e228b86b424563a0419acc1c Mon Sep 17 00:00:00 2001 From: Nuvindu Date: Sat, 8 Feb 2025 11:17:58 +0530 Subject: [PATCH] Fix uncommitted toml files --- transaction-negative-tests/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/transaction-negative-tests/build.gradle b/transaction-negative-tests/build.gradle index 1c05d7c..74dddc0 100644 --- a/transaction-negative-tests/build.gradle +++ b/transaction-negative-tests/build.gradle @@ -126,8 +126,10 @@ task ballerinaNegativeTests { environment "JAVA_OPTS", "-DBALLERINA_DEV_COMPILE_BALLERINA_ORG=true" if (Os.isFamily(Os.FAMILY_WINDOWS)) { commandLine 'cmd', '/c', "$distributionBinPath/bal.bat test ${graalvmFlag} ${testParams}" + commandLine 'cmd', '/c', "git commit --amend --no-edit Ballerina.toml Dependencies.toml" } else { commandLine 'sh', '-c', "$distributionBinPath/bal test ${graalvmFlag} ${testParams}" + commandLine 'sh', '-c', "git commit --amend --no-edit Ballerina.toml Dependencies.toml" } } }