mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-03 08:34:33 +00:00
Remove some unnecessary macro use
This commit is contained in:
parent
dbd130fdb5
commit
589e135de3
1 changed files with 2 additions and 2 deletions
|
@ -301,8 +301,8 @@ mod cli_run {
|
||||||
test_many_cli_commands: bool, // buildOnly, buildAndRun and buildAndRunIfNoErrors
|
test_many_cli_commands: bool, // buildOnly, buildAndRun and buildAndRunIfNoErrors
|
||||||
) {
|
) {
|
||||||
let file_name = file_path_from_root(dir_name, roc_filename);
|
let file_name = file_path_from_root(dir_name, roc_filename);
|
||||||
|
let mut roc_app_args: Vec<String> = Vec::new();
|
||||||
|
|
||||||
let mut roc_app_args: Vec<String> = vec![];
|
|
||||||
for arg in args {
|
for arg in args {
|
||||||
match arg {
|
match arg {
|
||||||
Arg::ExamplePath(file) => {
|
Arg::ExamplePath(file) => {
|
||||||
|
@ -320,7 +320,7 @@ mod cli_run {
|
||||||
}
|
}
|
||||||
|
|
||||||
// workaround for surgical linker issue, see PR #3990
|
// workaround for surgical linker issue, see PR #3990
|
||||||
let mut custom_flags: Vec<&str> = vec![];
|
let mut custom_flags: Vec<&str> = Vec::new();
|
||||||
|
|
||||||
match executable_filename {
|
match executable_filename {
|
||||||
"form" | "hello-gui" | "breakout" | "ruby" => {
|
"form" | "hello-gui" | "breakout" | "ruby" => {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue