Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit 60580d9

Browse files
committed
fix for buggy dist/build.sh
Fixes #767
1 parent 76b3b73 commit 60580d9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dist/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
PLATFORM=${1-all}
77

88
# product name
9-
PRODUCT_NAME="${PRODUCT_NAME-`cat ../build/config.json | jq --raw-output .productName`"
9+
PRODUCT_NAME="${PRODUCT_NAME-`cat ../app/build/config.json | jq --raw-output .productName`}"
1010

1111
# filesystem icons
12-
ICON_MAC=`cat ../build/config.json | jq --raw-output .filesystemIcons.darwin`
13-
ICON_WIN32=`cat ../build/config.json | jq --raw-output .filesystemIcons.win32`
14-
ICON_LINUX=`cat ../build/config.json | jq --raw-output .filesystemIcons.linux`
12+
ICON_MAC=`cat ../app/build/config.json | jq --raw-output .filesystemIcons.darwin`
13+
ICON_WIN32=`cat ../app/build/config.json | jq --raw-output .filesystemIcons.win32`
14+
ICON_LINUX=`cat ../app/build/config.json | jq --raw-output .filesystemIcons.linux`
1515

1616
VERSION=`git rev-parse master`
1717
BUILDDIR=build

0 commit comments

Comments
 (0)