mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-16 14:12:39 +00:00
14 lines
424 B
Bash
Executable File
14 lines
424 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Export variables for later stages of the Azure pipeline
|
|
# 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
|
|
echo "##vso[task.setvariable variable=$key]$val"
|
|
done < ".ci/ci-vars.env"
|