mirror of
https://github.com/ryanoasis/nerd-fonts.git
synced 2024-12-01 16:55:57 +02:00
25 lines
530 B
Bash
Executable File
25 lines
530 B
Bash
Executable File
#!/bin/bash
|
|
# version: 2.0.0
|
|
# calls the necessary scripts in the necessary order to prepare for a release
|
|
|
|
#set -x
|
|
LINE_PREFIX="# [Nerd Fonts] "
|
|
|
|
if [ ! $# -eq 1 ]
|
|
then
|
|
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
|
|
#./upload-archives.sh # better done as a separate step
|
|
|
|
exit
|
|
|