Skip to content

Commit

Permalink
Remove Gradle commands redundant quote (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
sverdlov93 authored Jan 9, 2024
1 parent f71f764 commit 25d5d74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tasks/JFrogGradle/gradleBuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function executeGradle(cliPath, workDir) {
tasksAndOptions = utils.cliJoin(tasksAndOptions, options);
}
tasksAndOptions = utils.cliJoin(tasksAndOptions, '-b', tl.getInput('gradleBuildFile'));
let gradleCommand = utils.cliJoin(cliPath, cliGradleCommand, utils.quote(tasksAndOptions));
let gradleCommand = utils.cliJoin(cliPath, cliGradleCommand, tasksAndOptions);
gradleCommand = utils.appendBuildFlagsToCliCommand(gradleCommand);

// Execute cli.
Expand Down

0 comments on commit 25d5d74

Please sign in to comment.