mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-21 20:33:00 +00:00
10 lines
295 B
Bash
Executable file
10 lines
295 B
Bash
Executable file
#!/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"
|