Skip to content

Commit

Permalink
fix(rust): more python parameter debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenj committed May 7, 2024
1 parent 7b578ca commit 6c39f67
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions earthly/rust/scripts/std_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,10 @@ def main():
processed_args=[]
for arg in sys.argv[1:]:
print("???"+arg+"???")
print(arg.endswith('"'))
print(len(processed_args)>0)
if len(processed_args)>0:
print('"' in processed_args[:-1])
if arg.endswith('"') and len(processed_args) > 0 and '"' in processed_args[:-1]:
processed_args[:-1] += " " + arg
else:
Expand Down

0 comments on commit 6c39f67

Please sign in to comment.