/
githubmirror
/
nghttp2
Обзор
Документация
Войти
/
githubmirror
/
nghttp2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.53.0
makerelease.sh
20 строк
490 B
Tatsuhiro Tsujikawa
Generate .asc files
10 май 2023, 11:27
10 май 2023, 11:27
ed2ccce
Код
Авторство
О чём код?
#!/bin/sh -e TAG=$1 PREV_TAG=$2 git checkout refs/tags/$TAG git log --pretty=fuller --date=short refs/tags/$PREV_TAG..HEAD > ChangeLog git submodule update --init autoreconf -i ./configure --with-mruby && \ make dist-bzip2 && make dist-gzip && make dist-xz || echo "error" VERSION=`echo -n $TAG | sed -E 's|^v([0-9]+\.[0-9]+\.[0-9]+)(-DEV)?$|\1|'` for f in nghttp2-$VERSION.tar.bz2 nghttp2-$VERSION.tar.gz nghttp2-$VERSION.tar.xz; do sha256sum $f > $f.asc done make distclean