Skip to content

Commit c0495eb

Browse files
committed
Fix make plugin clean
1 parent c7797f9 commit c0495eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tmc-langs-make/src/main/java/fi/helsinki/cs/tmc/langs/make/MakePlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ private boolean builds(Path dir) {
233233

234234
@Override
235235
public void clean(Path path) {
236-
String[] command = {"make", "test"};
236+
String[] command = {"make", "clean"};
237237
ProcessRunner runner = new ProcessRunner(command, path);
238238

239239
try {

0 commit comments

Comments
 (0)