Skip to content

Commit

Permalink
fix(rust): actually save the dequoted string.
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenj committed May 7, 2024
1 parent 6d7cbb4 commit 44184f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion earthly/rust/scripts/std_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ def main():
for arg in sys.argv[1:]:
if arg.endswith('"') and len(processed_args) > 0 and '"' in processed_args[-1]:
processed_args[-1] += " " + arg
processed_args[-1].replace('"', '')
processed_args[-1] = processed_args[-1].replace('"', '')
else:
processed_args.append(arg)

Expand Down

0 comments on commit 44184f1

Please sign in to comment.