mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
fix: various python compatibility issues
This commit is contained in:
parent
635ad9782a
commit
ea29efc298
1 changed files with 10 additions and 2 deletions
12
hyperbole.py
12
hyperbole.py
|
@ -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():
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue