laforge has submitted this change. ( https://gerrit.osmocom.org/c/docker-playground/+/40257?usp=email )
Change subject: common/ttcn3-docker-prepare: add _scripts symlink ......................................................................
common/ttcn3-docker-prepare: add _scripts symlink
The ttcn3-*-{start,stop}.sh scripts include a file from the _scripts dir since Ia63c37b54fb42a8c64a676334cef6f9df4152e18. As they are called through symlinks in / in docker-playground.git, we must make the another symlink available for _scripts as well.
Fix for: ../ttcn3-tcpdump-start.sh: 3: .: cannot open ../_scripts/tcpdump-dumpcap.inc.sh: No such file
Change-Id: I3a093ac7058d31db958785692444cb58525a6181 --- M common/ttcn3-docker-prepare.sh 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve
diff --git a/common/ttcn3-docker-prepare.sh b/common/ttcn3-docker-prepare.sh index c2b28b9..ef684be 100755 --- a/common/ttcn3-docker-prepare.sh +++ b/common/ttcn3-docker-prepare.sh @@ -33,7 +33,7 @@ fi
# Link start/stop scripts to / -for i in ttcn3-*-start.sh ttcn3-*-stop.sh; do +for i in ttcn3-*-start.sh ttcn3-*-stop.sh _scripts; do ln -sv "/osmo-ttcn3-hacks/$i" "/$i" done