Skip to content

Commit

Permalink
部分macos系统下没有/usr/bin/python导致编译失败
Browse files Browse the repository at this point in the history
  • Loading branch information
L1l1thLY committed May 11, 2022
1 parent 22f86f8 commit 61b4309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qmui.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1543,8 +1543,8 @@
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = "/usr/bin/python ./umbrellaHeaderFileCreator.py";
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\n";
shellPath = /bin/bash;
shellScript = "# Type a script or drag a script file from your workspace to insert its path.\npy2_path=\"/usr/bin/python\"\n\nif [ -x \"$py2_path\" ]; then \n /usr/bin/python umbrellaHeaderFileCreator.py\nelse\n /usr/bin/python3 umbrellaHeaderFileCreator.py\nfi\n";
};
/* End PBXShellScriptBuildPhase section */

Expand Down

0 comments on commit 61b4309

Please sign in to comment.