From d0ef3dace76836812fde722765a0a02b150f2a0b Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Wed, 31 Aug 2022 14:43:28 +0200 Subject: [PATCH] run_sdk_container: Use sdk_entry.sh from repo instead of inbuilt copy The SDK container has a copy of sdk_entry.sh for standalone use. This was also used by run_sdk_container which required creating new SDK container images for changes to take effect. Use the repository's version from run_sdk_container for fixes to take effect without requiring new SDK containers. --- run_sdk_container | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_sdk_container b/run_sdk_container index 808e4ab5bd..4579186512 100755 --- a/run_sdk_container +++ b/run_sdk_container @@ -146,4 +146,4 @@ fi # Workaround: The SDK expects to be able to write to /etc/hosts $docker exec "$name" sh -c 'cp /etc/hosts /etc/hosts2; umount /etc/hosts ; mv /etc/hosts2 /etc/hosts' -$docker exec $tty -i "$name" /home/sdk/sdk_entry.sh "$@" +$docker exec $tty -i "$name" /mnt/host/source/src/scripts/sdk_lib/sdk_entry.sh "$@"