Merge pull request #404 from sever-sever/T5261-build

T5261: Fix build aws-gwlbtun for binary path
This commit is contained in:
zdc 2023-09-13 16:31:11 +03:00 committed by GitHub
commit 1f14b2d766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,18 @@
#!/usr/bin/env python3
from argparse import ArgumentParser
from pathlib import Path
from subprocess import run
def prepare_package() -> None:
"""Prepare a package for Noned
"""
install_file = Path('./debian/install')
install_data = 'obj-x86_64-linux-gnu/gwlbtun usr/sbin'
install_file.write_text(install_data)
def build_package(package_name: str, package_ver: str) -> bool:
"""Build a package using commands from external file
@ -39,6 +48,8 @@ if __name__ == '__main__':
help='Version for the package')
args = arg_parser.parse_args()
prepare_package()
if not build_package(args.package, args.version):
exit(1)