diff --git a/scripts/get_arch.py b/scripts/get_arch.py index 70d79d4..116f455 100755 --- a/scripts/get_arch.py +++ b/scripts/get_arch.py @@ -38,11 +38,7 @@ def get_arch() -> str: def main(): arch = get_arch() - compile_target = os.getenv("APNGASM_COMPILE_TARGET") - if compile_target: - sys.stdout.write(compile_target) - else: - sys.stdout.write(arch) + sys.stdout.write(arch) if __name__ == "__main__":