[Mac] Changed to use lowercase "k" when generating DMG file.

This commit is contained in:
Tom Bogle 2017-08-28 08:04:18 -04:00
parent 1c7fd1c2e0
commit 52bbc00545
2 changed files with 3 additions and 3 deletions

View file

@ -176,7 +176,7 @@ if [[ $? != 0 || -d "$STAGING_DIR" ]] ; then
fi
# Step 5 - Convert image to a compressed readonly DMG image
DMG_FILE_PATH="$DEST_DIR/Keyman-$KM_VERSION.dmg"
DMG_FILE_PATH="$DEST_DIR/keyman-$KM_VERSION.dmg"
displayInfo "Converting/compressing image to create \"$DMG_FILE_PATH\""
if [[ -e "$DMG_FILE_PATH" ]] ; then
if [[ "$VERBOSITY" != "-quiet" ]] ; then

View file

@ -1,4 +1,4 @@
#!/bin/sh
f#!/bin/sh
# Please note that this build script (understandably) assumes that it is running on Mac OS X.
if [[ "${OSTYPE}" != "darwin"* ]]; then
@ -92,7 +92,7 @@ elif [[ ! -d $DEST_DIR ]]; then
fail "Destination dir exists but is not a directory: $2"
fi
DMG_FILENAME="Keyman-$KM_VERSION.dmg"
DMG_FILENAME="keyman-$KM_VERSION.dmg"
DMG_FILEPATH="$DEST_DIR/$DMG_FILENAME"
DOWNLOAD_INFO_FILEPATH="${DMG_FILEPATH}.download_info"
if [[ ! -f "$DMG_FILEPATH" ]]; then