Skip to content

Commit

Permalink
martonp review changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ukane-philemon committed May 13, 2023
1 parent 627114d commit 26be2ab
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions client/cmd/dexc-desktop/pkg/pkg-darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export GOWORK=off
# For release set metadata to "release".
VER=`cat ../../../app/VERSION`
META= # "release"
BUILD_VER="1.0.0" # increment for every build.
OS_FULL_VERSION="$(sw_vers | sed -n 2p | cut -d : -f 2 | tr -d '[:space:]' | cut -c1-)"
OS_MAJOR_VERSION="$(echo $OS_FULL_VERSION | cut -d . -f 1)"
OS_MINOR_VERSION="$(echo $OS_FULL_VERSION | cut -d . -f 2)"
Expand Down Expand Up @@ -179,7 +180,8 @@ function prepare() {
<key>CFBundleIdentifier</key><string>com.decred.dcrdex</string>
<key>CFBundleInfoDictionaryVersion</key><string>1.0</string>
<key>CFBundleName</key><string>${APP_NAME}</string>
<key>CFBundleShortVersionString</key><string>1.0.0</string>
<key>CFBundleShortVersionString</key><string>${VER%%-*}</string>
<key>CFBundleVersion</key><string>${BUILD_VER}</string>
<key>CFBundleSignature</key><string>????</string>
<key>CFBundleSupportedPlatforms</key><array><string>MacOSX</string></array>
<key>LSMinimumSystemVersion</key><string>10.11.0</string>
Expand Down Expand Up @@ -328,5 +330,5 @@ build_targets
cleanup

pushd ./installers
sha256sum *.dmg > dexc-v${VER}-manifest.txt
shasum -a 256 *.dmg > dexc-v${VER}-manifest.txt
popd

0 comments on commit 26be2ab

Please sign in to comment.