osmith submitted this change.
jobs/ttcn3-testsuites-testenv: fix stray linux file
Fix that if the kernel is set to "none", we keep a dummy linux file in
the top directory.
Change-Id: I2e936fc2aef144ca2a55e47508e2abb2730e04e2
---
M jobs/ttcn3-testsuites-testenv.yml
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/jobs/ttcn3-testsuites-testenv.yml b/jobs/ttcn3-testsuites-testenv.yml
index 35af150..0b5dba7 100644
--- a/jobs/ttcn3-testsuites-testenv.yml
+++ b/jobs/ttcn3-testsuites-testenv.yml
@@ -678,7 +678,9 @@
rm -rf logs cache src/osmo-ttcn3-hacks/.linux
- if [ "$KERNEL" != "none" ]; then
+ if [ "$KERNEL" = "none" ]; then
+ rm linux
+ else
mv linux src/osmo-ttcn3-hacks/.linux
fi
To view, visit change 43493. To unsubscribe, or for help writing mail filters, visit settings.