summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2023-09-15 11:42:58 +0300
committerGitHub <noreply@github.com>2023-09-15 11:42:58 +0300
commit68256f4c41dcaeb4b19028f5d572f9d0d3ff3e23 (patch)
tree870cd4046bf6a7842eada7d9f4eb89929635d018
parente7c29ed7be44e33a1b804f93deceefa1b82790df (diff)
parent494e01ec4f701e2b7004f801f04fd827048efb79 (diff)
downloadvyos-build-68256f4c41dcaeb4b19028f5d572f9d0d3ff3e23.tar.gz
vyos-build-68256f4c41dcaeb4b19028f5d572f9d0d3ff3e23.zip
Merge pull request #409 from sever-sever/T5261-build
T5261: Fix build aws-gwlbtun create the file before writing content
-rwxr-xr-xpackages/aws-gateway-load-balancer-tunnel-handler/build.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/aws-gateway-load-balancer-tunnel-handler/build.py b/packages/aws-gateway-load-balancer-tunnel-handler/build.py
index c79b4f12..7f5c5357 100755
--- a/packages/aws-gateway-load-balancer-tunnel-handler/build.py
+++ b/packages/aws-gateway-load-balancer-tunnel-handler/build.py
@@ -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)