mas/script/version
2021-06-08 19:49:02 -07:00

24 lines
484 B
Bash
Executable file

#!/bin/bash -e
#
# script/version
# mas
#
# Displays the current marketing version of mas.
#
# This no longer works with MARKETING_VERSION build setting in Info.plist
# agvtool what-marketing-version -terse1
VERSION=$(git describe --abbrev=0 --tags)
VERSION=${VERSION#v}
SCRIPT_PATH=$(dirname "$(which "$0")")
cat <<EOF >"${SCRIPT_PATH}/../Sources/MasKit/Package.swift"
// Generated by: script/version
enum Package {
static let version = "${VERSION}"
}
EOF
echo "${VERSION}"