rpcs3/.ci/export-cirrus-vars.sh

14 lines
397 B
Bash
Raw Normal View History

2021-04-04 08:34:12 +00:00
#!/bin/sh -e
2021-05-31 18:46:46 +00:00
# Export variables for later stages of the Cirrus pipeline
2021-04-04 08:34:12 +00:00
# Values done in this manner will appear as environment variables
# in later stages.
# From pure-sh-bible
# Setting 'IFS' tells 'read' where to split the string.
while IFS='=' read -r key val; do
# Skip over lines containing comments.
[ "${key##\#*}" ] || continue
export "$key"="$val"
done < ".ci/ci-vars.env"