Skip to content

Commit

Permalink
#6: removed invalid interactive option
Browse files Browse the repository at this point in the history
removed invalid --non-interactive option and kept --no-pager to disable pagers
  • Loading branch information
jan-vcapgemini committed Jan 9, 2024
1 parent 2d7792a commit 21347a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ public void gitPullOrClone(Path target, String gitRepoUrl, boolean force) {
if (!result.isSuccessful()) {
warning("Git failed to fetch from origin master.");
}
result = pc.addArg("pull").addArg("--non-interactive").addArg("--no-pager").run(false);
result = pc.addArg("pull").addArg("--no-pager").run(false);
if (!result.isSuccessful()) {
warning("Git failed to pull from origin master.");
}
Expand Down

0 comments on commit 21347a5

Please sign in to comment.