13 lines
353 B
Bash
Executable File
13 lines
353 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Remove existing .plist entry, if any.
|
|
/usr/libexec/PlistBuddy -c "Delete BuildTimestamp" SignalShareExtension/Info.plist || true
|
|
|
|
if [ "${CONFIGURATION}" = "App Store Release" ]; then
|
|
_build_timestamp=`date +%s`
|
|
/usr/libexec/PlistBuddy -c "add :BuildTimestamp string '$_build_timestamp'" SignalShareExtension/Info.plist
|
|
fi
|
|
|