Skip to content

Commit

Permalink
fix(rust): debug code for argument parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenj committed May 7, 2024
1 parent 18ef87e commit 93fd9b3
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 @@ -244,11 +244,15 @@ def strip(results: exec_manager.Results, bin: str):
)
)

import sys

def main():
# Force color output in CI
rich.reconfigure(color_system="256")

for arg in sys.argv[1:]:
print(arg)

parser = argparse.ArgumentParser(description="Rust build processing.")
parser.add_argument(
"--verbose",
Expand Down

0 comments on commit 93fd9b3

Please sign in to comment.