Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
laggykiller authored Feb 7, 2024
1 parent 96a3289 commit 05bf74a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/get_arch.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ def get_arch():

def main():
arch = get_arch()
if compile_target := os.getenv("APNGASM_COMPILE_TARGET"):
compile_target = os.getenv("APNGASM_COMPILE_TARGET")
if compile_target:
sys.stdout.write(compile_target)
else:
sys.stdout.write(arch)
Expand Down

0 comments on commit 05bf74a

Please sign in to comment.