把github 参数放到 output参数前面
This commit is contained in:
parent
7e3379bcec
commit
c46b67faf7
@ -21,13 +21,6 @@ if __name__ == '__main__':
|
|||||||
# 修改 python 执行文件 为 运行时的 python
|
# 修改 python 执行文件 为 运行时的 python
|
||||||
compiler.python_cmd = sys.executable
|
compiler.python_cmd = sys.executable
|
||||||
|
|
||||||
# 检测 --output xx 参数
|
|
||||||
if '--output' in sys.argv:
|
|
||||||
# 输入的是输出目录
|
|
||||||
compiler.output_path = sys.argv[sys.argv.index('--output') + 1]
|
|
||||||
sys.argv.remove('--output')
|
|
||||||
sys.argv.remove(compiler.output_path)
|
|
||||||
|
|
||||||
# 检测 --github 参数
|
# 检测 --github 参数
|
||||||
is_github = False
|
is_github = False
|
||||||
if '--github' in sys.argv:
|
if '--github' in sys.argv:
|
||||||
@ -36,6 +29,13 @@ if __name__ == '__main__':
|
|||||||
compiler.show_progress = False
|
compiler.show_progress = False
|
||||||
compiler.output_path = Path('./build/github')
|
compiler.output_path = Path('./build/github')
|
||||||
|
|
||||||
|
# 检测 --output xx 参数
|
||||||
|
if '--output' in sys.argv:
|
||||||
|
# 输入的是输出目录
|
||||||
|
compiler.output_path = sys.argv[sys.argv.index('--output') + 1]
|
||||||
|
sys.argv.remove('--output')
|
||||||
|
sys.argv.remove(compiler.output_path)
|
||||||
|
|
||||||
print(compiler.output_path)
|
print(compiler.output_path)
|
||||||
|
|
||||||
print(compiler)
|
print(compiler)
|
||||||
|
Loading…
Reference in New Issue
Block a user