Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit 5734e79

Browse files
committed
Merge branch 'master' into run-tests-subfolder-bug-fix-juha
2 parents 4e1255f + cf58ac4 commit 5734e79

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/java/fi/helsinki/cs/tmc/cli/tmcstuff/TmcUtil.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ public static List<Exercise> downloadAllExercises(TmcCore core, Course course) {
8383
public static SubmissionResult submitExercise(TmcCore core, Course course, String name) {
8484
// Exercise has directories separated with a - but core needs them to be separated with a / for submission
8585
Exercise exercise = TmcUtil.findExercise(course, name);
86-
String fixedName = exercise.getName().replace("-", File.separator);
87-
exercise.setName(fixedName);
86+
//String fixedName = exercise.getName().replace("-", File.separator);
87+
//exercise.setName(fixedName);
8888
try {
8989
return core.submit(new TmcCliProgressObserver(),
9090
exercise).call();

0 commit comments

Comments
 (0)