#!/bin/sh case "$1" in *sername*) printf '%s\n' "${CI_GIT_USERNAME:-oauth2}" ;; *) printf '%s\n' "$CI_GIT_TOKEN" ;; esac