Skip to content
Snippets Groups Projects
Commit ccdb8f62 authored by iaibrys's avatar iaibrys
Browse files

Fix build

parent a4d07507
No related branches found
No related tags found
No related merge requests found
#!/bin/bash #!/bin/bash
function get_version() { function get_version() {
current_branch=$(git branch | grep \* | cut -d ' ' -f2) current_branch=$(git branch | grep -v HEAD | grep \* | cut -d ' ' -f2)
current_branch=${CI_COMMIT_SHORT_SHA:-$current_branch}
branches=(master develop $current_branch) branches=(master develop $current_branch)
for branch_idx in "${!branches[@]}"; do for branch_idx in "${!branches[@]}"; do
...@@ -49,7 +50,11 @@ function emit_info() { ...@@ -49,7 +50,11 @@ function emit_info() {
done done
} }
component=$(git config --local remote.origin.url | gsed -r 's/.*[:/]([^/]+)(\.git)?$/\1/' | gsed -r 's/\//-/') sed=sed
if type gsed >/dev/null 2>&1; then
sed=gsed
fi
component=$(git config --local remote.origin.url | ${sed} -r 's/.*[:/]([^/]+)(\.git)?$/\1/' | ${sed} -r 's/\//-/')
emit_info ${component} . emit_info ${component} .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment