From bb401fa70b6e097bbc9bf42e216a84cee76ee775 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Tue, 7 Jun 2022 04:15:42 -0700 Subject: [PATCH] Change server template Summary: This is a completely meaningless change *but* it actually has an important semantic meaning. I recently changed the `+x` bit to be set on the node binary while bundling which is not always true when packing on Linux. However, we don't consider permission bits as part of the checksums we build, which means you will always get the previous version until we update the node version or this very script because it's part of the same bundle. So let's just ship this "update". Reviewed By: mweststrate Differential Revision: D36954703 fbshipit-source-id: 2d89cb1ee2e7bcce125c3f9efc9d8d39101ac133 --- .../Flipper.app/Contents/MacOS/Flipper | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/static/flipper-server-app-template/Flipper.app/Contents/MacOS/Flipper b/desktop/static/flipper-server-app-template/Flipper.app/Contents/MacOS/Flipper index 10d1b05a4..39ab738c3 100755 --- a/desktop/static/flipper-server-app-template/Flipper.app/Contents/MacOS/Flipper +++ b/desktop/static/flipper-server-app-template/Flipper.app/Contents/MacOS/Flipper @@ -5,4 +5,5 @@ NODE_PATH="${SCRIPT_PATH}/node" SERVER_RESOURCES="$SCRIPT_PATH/../Resources/server" cd "$SERVER_RESOURCES" || exit 1 +echo "Starting flipper-server ..." "$NODE_PATH" .