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