blob: 5ab1f8189e4fe773dfb97992760099ea8ac512fc (
plain)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bash
set -eu
version=$(cargo run -q --bin mullvad-version)
if [[ "$version" == *-dev-* ]]; then
echo "Current commit doesn't correspond to an app release. Please checkout a release tag."
exit 1
fi
|