Skip to content

Commit

Permalink
Add -M to clojure
Browse files Browse the repository at this point in the history
  • Loading branch information
prasmussen committed Dec 21, 2020
1 parent 8735bfb commit 3e4357c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/code_runner/language.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ pub fn run_instructions(language: &Language, files: non_empty_vec::NonEmptyVec<p
Language::Clojure => {
RunInstructions{
build_commands: vec![],
run_command: format!("clj {}", main_file_str),
run_command: format!("clj -M {}", main_file_str),
}
}

Expand Down

0 comments on commit 3e4357c

Please sign in to comment.