2012-08-02 22:35:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -x
|
|
|
|
set -e
|
|
|
|
|
2015-06-10 09:05:26 +02:00
|
|
|
if [ "X$SIGN" == "X" ]; then
|
2012-08-02 22:35:41 +02:00
|
|
|
echo "No SIGN environment var. Skipping codesign." >&2
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
2017-07-12 02:04:53 +02:00
|
|
|
codesign -s "$SIGN" "$PKGDIR"/bin/node
|