mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-05 00:15:32 +00:00
[Mac] Changed to use lowercase "k" when generating DMG file.
This commit is contained in:
parent
1c7fd1c2e0
commit
52bbc00545
2 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue