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 f5b5afb commit 6f735d0Copy full SHA for 6f735d0
tmc-langs-util/src/task_executor/submission_packaging.rs
@@ -257,8 +257,8 @@ pub fn prepare_submission(
257
}
258
259
for path in config.exercise_file_paths {
260
- let exercise_file = dbg!(tests_dir.join(dbg!(&path)));
261
- if dbg!(exercise_file.exists()) {
+ let exercise_file = tests_dir.join(&path);
+ if exercise_file.exists() {
262
let target = if let Some(parent) = path.parent() {
263
dest.join(parent)
264
} else {
tmc-langs-util/tests/data/MavenExercise/.project
0 commit comments