Skip to content

Commit

Permalink
fix(deploy-script): favicon generator (#2466)
Browse files Browse the repository at this point in the history
Without this change, the script tries to execute an `index.js` located
in a folder that does not have such a file.
  • Loading branch information
MaxMustermann2 authored Dec 13, 2024
1 parent f672d23 commit 2915d95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deploy/scripts/favicon_generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ master_url="${FAVICON_MASTER_URL:-$NEXT_PUBLIC_NETWORK_ICON}"
export MASTER_URL="$master_url"

cd ./deploy/tools/favicon-generator
node "$(dirname "$0")/index.js"
yarn install --frozen-lockfile
node "$(pwd)/index.js"
if [ $? -ne 0 ]; then
cd ../../../
exit 1
Expand Down

0 comments on commit 2915d95

Please sign in to comment.