mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-04 09:42:40 +02:00
8 lines
207 B
Bash
8 lines
207 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
today=$(date '+%Y-%m-%d')
|
||
|
commitShort=$(git rev-parse --short HEAD)
|
||
|
bundleVersion="$today-$commitShort"
|
||
|
|
||
|
/usr/libexec/PlistBuddy "$1/Info.plist" -c "Set :CFBundleVersion $bundleVersion"
|