Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
tails
tails
Commits
6c9205f7
Commit
6c9205f7
authored
Jan 06, 2020
by
intrigeri
Browse files
Release process: add missing "&&"
parent
e8409b7f
Changes
1
Show whitespace changes
Inline
Side-by-side
wiki/src/contribute/release_process.mdwn
View file @
6c9205f7
...
...
@@ -400,21 +400,21 @@ matches the date of the future signature.
RELEASE_DATE='2015-11-03'
echo "${VERSION:?}" > wiki/src/inc/stable_amd64_version.html
echo -n "${RELEASE_DATE:?}" > wiki/src/inc/stable_amd64_date.html
echo "${VERSION:?}" > wiki/src/inc/stable_amd64_version.html
&& \
echo -n "${RELEASE_DATE:?}" > wiki/src/inc/stable_amd64_date.html
&& \
for type in img iso; do
basename="tails-amd64-${VERSION:?}"
filename="${basename:?}.${type:?}"
echo "TZ=UTC gpg --no-options --keyid-format long --verify ${filename:?}.sig ${filename:?}" \
> wiki/src/inc/stable_amd64_${type:?}_gpg_verify.html && \
echo "http://dl.amnesia.boum.org/tails/stable/${basename:?}/${filename:?}" \
> wiki/src/inc/stable_amd64_${type:?}_url.html
> wiki/src/inc/stable_amd64_${type:?}_url.html
&& \
echo "https://tails.boum.org/torrents/files/${filename:?}.sig" \
> wiki/src/inc/stable_amd64_${type:?}_sig_url.html
> wiki/src/inc/stable_amd64_${type:?}_sig_url.html
&& \
echo "https://tails.boum.org/torrents/files/${filename:?}.torrent" \
> wiki/src/inc/stable_amd64_${type:?}_torrent_url.html
done
./build-website --rebuild
done
&& \
./build-website --rebuild
&& \
git commit wiki/src/inc/ -m "Update version and date for ${VERSION:?}."
Signing key downloaded by the Upgrader
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment