From 773132481a460304d0c24883818f053e31c9eabb Mon Sep 17 00:00:00 2001 From: Moritz Kiefer Date: Tue, 1 Feb 2022 09:49:41 +0100 Subject: [PATCH] Drop profile-dir validation for sandbox-kv (#12671) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Given that we’re killing that in 2.0 it doesn’t make sense to keep this. I’ll create an issue on the assembly repo to add corresponding tests for the Sandbox tests. changelog_begin changelog_end --- daml-assistant/daml-sdk/validate.sh | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/daml-assistant/daml-sdk/validate.sh b/daml-assistant/daml-sdk/validate.sh index 51a0d48075..ebabfc1ef2 100755 --- a/daml-assistant/daml-sdk/validate.sh +++ b/daml-assistant/daml-sdk/validate.sh @@ -19,19 +19,6 @@ JAVA=$(rlocation "$TEST_WORKSPACE/$1") SDK_CE=$(rlocation "$TEST_WORKSPACE/$2") SDK_EE=$(rlocation "$TEST_WORKSPACE/$3") -for cmd in sandbox-kv; do - ret=0 - $JAVA -jar $SDK_CE $cmd --help | grep -q profile-dir || ret=$? - if [[ $ret -eq 0 ]]; then - echo "Unexpected profile-dir option in CE" - exit 1 - fi -done - -for cmd in sandbox-kv; do - $JAVA -jar $SDK_EE $cmd --help | grep -q profile-dir -done - if ! ($JAVA -jar $SDK_EE trigger-service --help | grep -q oracle); then exit 1 fi