6 lines
112 B
Bash
Executable File
6 lines
112 B
Bash
Executable File
#!/bin/sh
|
|
case "$1" in
|
|
*Username*) printf '%s\n' "$CI_BOT_USER" ;;
|
|
*) printf '%s\n' "$CI_BOT_TOKEN" ;;
|
|
esac
|