Skip to content

Commit

Permalink
Revert "runtime only launcher"
Browse files Browse the repository at this point in the history
This reverts commit a6c988c.
  • Loading branch information
Michael Bonani committed Dec 16, 2020
1 parent a6c988c commit ca28be3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions osx/createbundle.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ sign() {
if [ -z "$IDENTITY" ]; then
echo "Identity not provided, not signing"
else
codesign --verify --verbose -f -s "$IDENTITY" "$@"
codesign --verify --options=runtime --verbose -f -s "$IDENTITY" "$@"
fi
}

Expand Down Expand Up @@ -123,7 +123,7 @@ do
done

echo "Signing $DEST with $DIR/launcher.entitlements"
sign --options=runtime $(realpath "$BINUTILS_DIR/thymio-launcher") --entitlements "$DIR/launcher.entitlements"
sign $(realpath "$BINUTILS_DIR/thymio-launcher") --entitlements "$DIR/launcher.entitlements"

if [ -n "$DMG" ]; then
test -f "$1" && rm "$DMG"
Expand All @@ -140,5 +140,5 @@ if [ -n "$DMG" ]; then
"$DMG" \
"$DMG_DIR/ThymioSuite.app"

sign --options=runtime -f "$1"
sign -f "$1"
fi

0 comments on commit ca28be3

Please sign in to comment.