Skip to content

Commit

Permalink
use not-greater-than symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
sam0x17 committed May 23, 2024
1 parent ed611e3 commit 2ce1333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,5 @@ jobs:
local_spec_version=$(cargo run -p node-subtensor-runtime --bin spec_version | tr -d '\n')
echo "local spec_version: $local_spec_version"
echo "network spec_version: $spec_version"
if (( $(echo "$local_spec_version <= $spec_version" | bc -l) )); then echo "$local_spec_version > $spec_version ❌"; exit 1; fi
if (( $(echo "$local_spec_version <= $spec_version" | bc -l) )); then echo "$local_spec_version $spec_version ❌"; exit 1; fi
echo "$local_spec_version > $spec_version ✅"

0 comments on commit 2ce1333

Please sign in to comment.