mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
Turn the root-level letsencrypt-auto symlink into a regular file. Close #2501.
It will always be a copy of the latest release version, 0.4 in this case. (Modify the release script to make that so.) This way, people using the old method of running le-auto from a git checkout will not end up using a bleeding-edge version, letting us work on the tip-of-tree version more freely.
This commit is contained in:
parent
9b21efc6b8
commit
b95a01a15c
2 changed files with 1813 additions and 2 deletions
|
|
@ -1 +0,0 @@
|
|||
letsencrypt-auto-source/letsencrypt-auto
|
||||
1809
letsencrypt-auto
Executable file
1809
letsencrypt-auto
Executable file
File diff suppressed because it is too large
Load diff
|
|
@ -171,7 +171,10 @@ while ! openssl dgst -sha256 -verify $RELEASE_OPENSSL_PUBKEY -signature \
|
|||
read -p "Please correctly sign letsencrypt-auto with offline-signrequest.sh"
|
||||
done
|
||||
|
||||
git add letsencrypt-auto-source
|
||||
# copy leauto to the root, overwriting the previous release version
|
||||
cp -p letsencrypt-auto-source/letsencrypt-auto letsencrypt-auto
|
||||
|
||||
git add letsencrypt-auto letsencrypt-auto-source
|
||||
git diff --cached
|
||||
git commit --gpg-sign="$RELEASE_GPG_KEY" -m "Release $version"
|
||||
git tag --local-user "$RELEASE_GPG_KEY" --sign --message "Release $version" "$tag"
|
||||
|
|
|
|||
Loading…
Reference in a new issue