We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7482d86 commit ff82058Copy full SHA for ff82058
src/main/java/edu/wpi/first/gradlerio/deploy/CreateLogFileTask.java
@@ -43,9 +43,9 @@ public CreateLogFileTask() {
43
Grgit grgit;
44
45
try {
46
- HashMap<String, Object> args = new HashMap<String, Object>();
47
- args.put("dir", gitDirectory);
48
- grgit = Grgit.open(args);
+ HashMap<String, Object> openargs = new HashMap<String, Object>();
+ openargs.put("dir", gitDirectory);
+ grgit = Grgit.open(openargs);
49
50
51
data.put(DEPLOY_ITEMS[4], grgit.getResolve().toRevisionString("HEAD"));
0 commit comments