Skip to content

Commit

Permalink
Merge pull request #43 from BlueBubblesApp/zach/fix/build-phase-killall
Browse files Browse the repository at this point in the history
fix: build failures due to killall non-zero exit
  • Loading branch information
zlshames authored Jul 1, 2024
2 parents cb0bcca + 033085e commit 7dfbe85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "codesign --deep -s \"-\" /Library/Application\\ Support/MacEnhance/Plugins/BlueBubblesHelper.bundle\nkillall Messages\nsleep 1\nopen -b com.apple.ichat\n";
shellScript = "codesign --deep -s \"-\" /Library/Application\\ Support/MacEnhance/Plugins/BlueBubblesHelper.bundle\nkillall -q Messages\nsleep 1\nopen -b com.apple.ichat\n";
};
/* End PBXShellScriptBuildPhase section */

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "killall Messages\n";
shellScript = "killall -q Messages; exit 0;\n";
};
A64B88AC2712494A00BAD446 /* Run Script */ = {
isa = PBXShellScriptBuildPhase;
Expand Down

0 comments on commit 7dfbe85

Please sign in to comment.