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

T5261: Fix build aws-gwlbtun create the file before writing content
This commit is contained in:
Viacheslav Hletenko 2023-09-15 11:42:58 +03:00 committed by GitHub
commit 68256f4c41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,6 +10,7 @@ def prepare_package() -> None:
"""
install_file = Path('./debian/install')
install_data = 'obj-x86_64-linux-gnu/gwlbtun usr/sbin'
install_file.touch()
install_file.write_text(install_data)