Skip to content

Commit

Permalink
Drop profile-dir validation for sandbox-kv (#12671)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
cocreature authored Feb 1, 2022
1 parent 1fa095a commit 7731324
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions daml-assistant/daml-sdk/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7731324

Please sign in to comment.