nerd-fonts/bin/scripts/release.sh

25 lines
530 B
Bash
Raw Normal View History

#!/bin/bash
# version: 2.0.0
# calls the necessary scripts in the necessary order to prepare for a release
#set -x
2017-05-14 00:02:53 +02:00
LINE_PREFIX="# [Nerd Fonts] "
if [ ! $# -eq 1 ]
then
2017-05-14 00:02:53 +02:00
echo "$LINE_PREFIX No release version given, must give semver release versionin format: #.#.#, e.g. 1.1.0"
fi
release=$1
./version-bump.sh "$release"
./standardize-and-complete-readmes.sh
./gotta-patch-em-all-font-patcher!.sh
./generate-fontconfig.sh
./generate-casks.sh
./archive-fonts.sh
2017-07-30 03:26:08 +02:00
#./upload-archives.sh # better done as a separate step
exit