-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
10 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -99,11 +99,11 @@ if [[ $SYS == Darwin ]]; then | |
$SUDO /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"; | ||
fi | ||
|
||
brew bundle; | ||
|
||
if [[ -z $GITHUB_ACTIONS ]]; then | ||
brew install imagemagick; # python upgrade fails on github runner | ||
if [[ -n $GITHUB_ACTIONS ]]; then | ||
brew install [email protected] || brew link --overwrite [email protected]; | ||
brew install [email protected] || brew link --overwrite [email protected]; | ||
fi | ||
brew bundle; | ||
fi | ||
|
||
if [[ $1 != package ]]; then | ||
|
@@ -215,3 +215,6 @@ if [[ ! -e libjcore/code/jStringData.h && $1 != package ]]; then | |
cp -f libjcore/jStringData_init.h libjcore/code/jStringData.h; | ||
chmod u+w libjcore/code/jStringData.h; | ||
fi | ||
|
||
touch libjx/image-build/*; | ||
touch libjexpr/code/JExprParserY.cpp libjexpr/code/JExprParserY.hpp; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters