Skip to content

Commit

Permalink
Update extract_installbuilder.osx to support mac sequoia
Browse files Browse the repository at this point in the history
installerbuilder.sh fails to work on macOS where /bin/sh is configured to point to a true Bourne shell. It can also fail when the it is pointed to shells like dash, Hence, change the shebang to pick the bash from environment instead of fixed path

Issue reported and fixed proposed by dave-shawley at Issue #177
  • Loading branch information
agarwal-kritika authored Nov 20, 2024
1 parent 0f03788 commit 5b9211b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/extract_installbuilder.osx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/usr/bin/env bash
os_version=`uname -r`
machine_platform=`uname -p`
machine_arch=`uname -m`
Expand Down

0 comments on commit 5b9211b

Please sign in to comment.