Skip to content

Commit 42c86de

Browse files
committed
Do not pass script name in arguments.
1 parent fd8a69c commit 42c86de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modules/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ impl TranslateModule for Main {
7171
let dollar = meta.gen_dollar();
7272
let args = self.args.clone().map_or_else(
7373
String::new,
74-
|name| format!("{name}=({quote}{dollar}0{quote} {quote}{dollar}@{quote})")
74+
|name| format!("{name}=({quote}{dollar}@{quote})")
7575
);
7676
format!("{args}\n{}", self.block.translate(meta))
7777
}

0 commit comments

Comments
 (0)