version bump script; minor bugfixes
This commit is contained in:
parent
c636129f75
commit
2fbe011e99
5 changed files with 14 additions and 4 deletions
10
bump-version.sh
Executable file
10
bump-version.sh
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
this="$(readlink -f "${0}")"
|
||||||
|
this_dir="$(dirname "${this}")"
|
||||||
|
|
||||||
|
git_branch="$(git rev-parse --abbrev-ref HEAD)"
|
||||||
|
version_str="${git_branch##*/}"
|
||||||
|
|
||||||
|
echo "${version_str}" > "${this_dir}/src/etc/version_tag"
|
||||||
|
sed -ri "s/(version\s*:).*$/\1 '${version_str}'/" "${this_dir}/example/kiwi.yml"
|
|
@ -2,7 +2,7 @@
|
||||||
# kiwi-scp instance configuration #
|
# kiwi-scp instance configuration #
|
||||||
###################################
|
###################################
|
||||||
|
|
||||||
version: '0.1.2'
|
version: '0.1.3'
|
||||||
|
|
||||||
runtime:
|
runtime:
|
||||||
storage: /tmp/kiwi
|
storage: /tmp/kiwi
|
||||||
|
|
4
kiwi
4
kiwi
|
@ -12,7 +12,7 @@ KIWI_VERSION_TAG="etc/version_tag"
|
||||||
# dependencies to run kiwi-scp
|
# dependencies to run kiwi-scp
|
||||||
KIWI_DEPENDENCIES="python3 pipenv less docker docker-compose"
|
KIWI_DEPENDENCIES="python3 pipenv less docker docker-compose"
|
||||||
# base install dir
|
# base install dir
|
||||||
KIWI_BASEDIR="${HOME}/.local/lib/kiwi-scp"
|
KIWI_BASEDIR="${HOME}/.cache/kiwi-scp"
|
||||||
# per-user env setup script
|
# per-user env setup script
|
||||||
KIWI_PROFILE="${HOME}/.kiwi_profile"
|
KIWI_PROFILE="${HOME}/.kiwi_profile"
|
||||||
|
|
||||||
|
@ -122,7 +122,7 @@ fi
|
||||||
# run check for new kiwi version
|
# run check for new kiwi version
|
||||||
if [ "${run_kiwi_check}" = "yes" ]; then
|
if [ "${run_kiwi_check}" = "yes" ]; then
|
||||||
# hash this script and the master version
|
# hash this script and the master version
|
||||||
hash_local="$(md5sum <"$(readlink "${0}")")"
|
hash_local="$(md5sum <"$(readlink -f "${0}")")"
|
||||||
hash_remote="$(curl --proto '=https' --tlsv1.2 -sSfL "${KIWI_URI}" | md5sum)"
|
hash_remote="$(curl --proto '=https' --tlsv1.2 -sSfL "${KIWI_URI}" | md5sum)"
|
||||||
|
|
||||||
# warn if different
|
# warn if different
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
0.1.2
|
0.1.3
|
||||||
|
|
Loading…
Reference in a new issue