Skip to content
Snippets Groups Projects
Verified Commit 403cb146 authored by Alexander Olofsson's avatar Alexander Olofsson
Browse files

Remove unnecessary quotes from extracted variables

parent 5e198bd4
No related branches found
No related tags found
No related merge requests found
Pipeline #111022 passed
...@@ -47,9 +47,9 @@ gemfile: ...@@ -47,9 +47,9 @@ gemfile:
GEMFILE="$(ls -1 liudesk_cmdb-*.gem)" GEMFILE="$(ls -1 liudesk_cmdb-*.gem)"
GEMNAME="$(basename -s '.gem' "${GEMFILE}")" GEMNAME="$(basename -s '.gem' "${GEMFILE}")"
cat <<EOF > variables.env cat <<EOF > variables.env
CI_RUBY_GEMFILE="$GEMFILE" CI_RUBY_GEMFILE=$GEMFILE
CI_RUBY_GEMNAME="${GEMNAME%%-*}" CI_RUBY_GEMNAME=${GEMNAME%%-*}
CI_RUBY_GEMVERSION="${GEMNAME#*-}" CI_RUBY_GEMVERSION=${GEMNAME#*-}
EOF EOF
cat variables.env cat variables.env
artifacts: artifacts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment