fix: various python compatibility issues

This commit is contained in:
tobyxdd 2023-06-04 22:13:08 -07:00
parent 635ad9782a
commit ea29efc298

View file

@ -1,3 +1,6 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import argparse import argparse
import os import os
import subprocess import subprocess
@ -17,6 +20,8 @@ LOGO = """
""" """
DESC = 'Hyperbole is the official build script for Hysteria.'
BUILD_DIR = 'build' BUILD_DIR = 'build'
APP_SRC_DIR = './app' APP_SRC_DIR = './app'
@ -117,7 +122,10 @@ def cmd_build(release=False):
if os_name == 'windows': if os_name == 'windows':
out_name += '.exe' out_name += '.exe'
env = {**os.environ, 'GOOS': os_name, 'GOARCH': arch} env = os.environ.copy()
env['GOOS'] = os_name
env['GOARCH'] = arch
cmd = ['go', 'build', '-o', cmd = ['go', 'build', '-o',
os.path.join(BUILD_DIR, out_name), '-ldflags', ' '.join(ldflags)] os.path.join(BUILD_DIR, out_name), '-ldflags', ' '.join(ldflags)]
if release: if release:
@ -177,7 +185,7 @@ def cmd_clean():
def cmd_about(): def cmd_about():
print(LOGO) print(LOGO)
print('Hyperbole is the official build script for Hysteria.') print(DESC)
def main(): def main():