Skip to content

Commit

Permalink
Fix undercased variable name DAML_CACHE
Browse files Browse the repository at this point in the history
run-full-compat: true
  • Loading branch information
dylant-da committed Oct 23, 2023
1 parent 413ca8d commit 7ad0a29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compatibility/test-daml-version-and-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ cat $DAML_CACHE/versions.txt
if ! stat $DAML_CACHE/versions.txt; then
exit_with_message 'Cached versions.txt should exist after running `daml install latest --snapshots yes`, even if it fails'
fi
if [[ $(grep -c 'snapshot' $daml_cache/versions.txt) -lt 100 ]]; then
exit_with_message 'cached versions.txt after `daml install latest --snapshots yes` contains less than 100 snapshots identifiers'
if [[ $(grep -c 'snapshot' $DAML_CACHE/versions.txt) -lt 100 ]]; then
exit_with_message 'Cached versions.txt after `daml install latest --snapshots yes` contains less than 100 snapshots identifiers'
fi

exit 0

0 comments on commit 7ad0a29

Please sign in to comment.