mirror of
https://github.com/yavook/kiwi-scp.git
synced 2024-11-22 04:43:00 +00:00
11 lines
295 B
Bash
11 lines
295 B
Bash
|
#!/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"
|