mirror of
https://github.com/dashpay/dash.git
synced 2024-12-29 13:59:06 +01:00
cb5d0d8b99
47776a958b08382d76d69b5df7beed807af168b3 Add linter: Make sure all shell scripts opt out of locale dependence using "export LC_ALL=C" (practicalswift) 3352da8da1243c03fc83ba678d2f5d193bd5a0c2 Add "export LC_ALL=C" to all shell scripts (practicalswift) Pull request description: ~~Make sure `LC_ALL=C` is set when using `grep` range expressions.~~ Make sure `LC_ALL=C` is set in all shell scripts. From the `grep(1)` documentation: > Within a bracket expression, a range expression consists of two characters separated by a hyphen. It matches any single character that sorts between the two characters, inclusive, using the locale's collating sequence and character set. For example, in the default C locale, `[a-d]` is equivalent to `[abcd]`. Many locales sort characters in dictionary order, and in these locales `[a-d]` is typically not equivalent to `[abcd]`; it might be equivalent to `[aBbCcDd]`, for example. To obtain the traditional interpretation of bracket expressions, you can use the C locale by setting the `LC_ALL` environment variable to the value C. Context: [Locale issue found when reviewing #13450](https://github.com/bitcoin/bitcoin/pull/13450/files#r194877736) Tree-SHA512: fd74d2612998f9b49ef9be24410e505d8c842716f84d085157fc7f9799d40e8a7b4969de783afcf99b7fae4f91bbb4559651f7dd6578a6a081a50bdea29f0909
53 lines
1.5 KiB
Bash
Executable File
53 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
# Copyright (c) 2014-2015 The Bitcoin Core developers
|
|
# Distributed under the MIT software license, see the accompanying
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
export LC_ALL=C
|
|
set -e
|
|
|
|
ROOTDIR=dist
|
|
BUNDLE="${ROOTDIR}/Dash-Qt.app"
|
|
CODESIGN=codesign
|
|
TEMPDIR=sign.temp
|
|
TEMPLIST=${TEMPDIR}/signatures.txt
|
|
OUT=signature-osx.tar.gz
|
|
OUTROOT=osx
|
|
|
|
if [ ! -n "$1" ]; then
|
|
echo "usage: $0 <codesign args>"
|
|
echo "example: $0 -s MyIdentity"
|
|
exit 1
|
|
fi
|
|
|
|
rm -rf ${TEMPDIR} ${TEMPLIST}
|
|
mkdir -p ${TEMPDIR}
|
|
|
|
${CODESIGN} -f --file-list ${TEMPLIST} "$@" "${BUNDLE}"
|
|
|
|
grep -v CodeResources < "${TEMPLIST}" | while read i; do
|
|
TARGETFILE="${BUNDLE}/`echo "${i}" | sed "s|.*${BUNDLE}/||"`"
|
|
SIZE=`pagestuff "$i" -p | tail -2 | grep size | sed 's/[^0-9]*//g'`
|
|
OFFSET=`pagestuff "$i" -p | tail -2 | grep offset | sed 's/[^0-9]*//g'`
|
|
SIGNFILE="${TEMPDIR}/${OUTROOT}/${TARGETFILE}.sign"
|
|
DIRNAME="`dirname "${SIGNFILE}"`"
|
|
mkdir -p "${DIRNAME}"
|
|
echo "Adding detached signature for: ${TARGETFILE}. Size: ${SIZE}. Offset: ${OFFSET}"
|
|
dd if="$i" of="${SIGNFILE}" bs=1 skip=${OFFSET} count=${SIZE} 2>/dev/null
|
|
done
|
|
|
|
grep CodeResources < "${TEMPLIST}" | while read i; do
|
|
TARGETFILE="${BUNDLE}/`echo "${i}" | sed "s|.*${BUNDLE}/||"`"
|
|
RESOURCE="${TEMPDIR}/${OUTROOT}/${TARGETFILE}"
|
|
DIRNAME="`dirname "${RESOURCE}"`"
|
|
mkdir -p "${DIRNAME}"
|
|
echo "Adding resource for: \"${TARGETFILE}\""
|
|
cp "${i}" "${RESOURCE}"
|
|
done
|
|
|
|
rm ${TEMPLIST}
|
|
|
|
tar -C "${TEMPDIR}" -czf "${OUT}" .
|
|
rm -rf "${TEMPDIR}"
|
|
echo "Created ${OUT}"
|