Skip to content

Commit

Permalink
Maintenance (macOS Simulator: trying to fix notarization)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shchvova committed Dec 5, 2020
1 parent 204e770 commit f35a40e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,6 @@ jobs:
shell: bash
run: |
curl -sL https://github.com/coronalabs/binary-data/releases/download/1.0/jre.macos.tgz -o jre.macos.tgz
tar xzf jre.macos.tgz
- name: install appdmg
run: npm install -g appdmg
- name: install imagemagick
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -288,3 +288,4 @@ external/JNLua/.project
/output/

/jre/
/jre.macos.tgz
4 changes: 2 additions & 2 deletions platform/mac/ratatouille.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -6709,7 +6709,7 @@
inputFileListPaths = (
);
inputPaths = (
"$(SRCROOT)/../../jre",
"$(SRCROOT)/../../jre.macos.tgz",
);
name = "Run Script (copy JRE if exists)";
outputFileListPaths = (
Expand All @@ -6719,7 +6719,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "set -x\n\nif [ -d \"$SRCROOT/../../jre\" ]\nthen\n\tcp -r \"$SRCROOT/../../jre\" \"$BUILT_PRODUCTS_DIR/$UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES\"\nfi\n";
shellScript = "set -x\n\nif [ -f \"$SRCROOT/../../jre.macos.tgz\" ]\nthen\n\ttar xzf \"$SRCROOT/../../jre.macos.tgz\" -C \"$BUILT_PRODUCTS_DIR/$UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES\"\nfi\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down

0 comments on commit f35a40e

Please sign in to comment.