Compare commits

..

No commits in common. "e90055e3bd181961a2609435e2afd044bf6172f6" and "0b2e66e7ae61750704ac1acdd2c529c237ec0341" have entirely different histories.

2 changed files with 6 additions and 6 deletions

View file

@ -2,8 +2,7 @@
VERSION="$1"
TAG="release-v${VERSION}"
KEY="${HOME}/.config/ssh/id_arrdem@tirefireind"
TON="${HOME}/ton"
if git tag | grep "$TAG"; then
git checkout "$TAG"
@ -19,8 +18,9 @@ fi
bazel build cram
mkdir -p "${TON}/key"
cp "${KEY}.pub" "$TON/key"
TON="$HOME/ton"
mkdir -p "$TON/key"
cp ~/.ssh/id_arrdem@arrdem.pub "$TON/key"
chmod 644 "$TON/key"/*
D="$TON/pkg/arrdem/cram/v${VERSION}"
@ -29,6 +29,6 @@ SIG="${D}/cram.sig"
mkdir -p "$D"
cp -f ./bazel-bin/cram "${BUILD}"
rm -f "${SIG}"
ssh-keygen -Y sign -f "${KEY}" -n "${SIG}" "${BUILD}"
ssh-keygen -Y sign -f ~/.ssh/id_arrdem@arrdem -n "${SIG}" "${BUILD}"
git checkout trunk

View file

@ -4,7 +4,7 @@
# But ... that's exactly what we want to do.
# So this script exists to find a 'compliant' Python install and use that.
PYTHONREV="3.11"
PYTHONREV="3.10"
CMD="python${PYTHONREV}"
if [ -x "$(command -v "$CMD")" ]; then