mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 08:19:38 +01:00
2dd710e7ea
This makes the installer work on Mountain Lion.
13 lines
197 B
Bash
13 lines
197 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
if ! [ -n "$SIGN" ]; then
|
|
echo "No SIGN environment var. Skipping codesign." >&2
|
|
exit 0
|
|
fi
|
|
|
|
productsign --sign "$SIGN" "$PKG" "$PKG"-SIGNED
|
|
mv "$PKG"-SIGNED "$PKG"
|