The script needs to fetch repository tags to function properly. Signed-off-by: Christopher Snowhill <kode54@gmail.com>
11 lines
178 B
Bash
Executable file
11 lines
178 B
Bash
Executable file
#!/bin/sh
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
|
|
git=$(which git)
|
|
|
|
"${BASEDIR}/../Scripts/extract_libraries.sh"
|
|
|
|
"$git" -C "${BASEDIR}/.." fetch --tags
|
|
|
|
"${BASEDIR}/../Scripts/genversion.sh"
|