Last active
October 18, 2016 15:57
-
-
Save ultimagriever/e98f0db94faa50166d51699696d97b8a to your computer and use it in GitHub Desktop.
Parse environment files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENV_FILE=$1 | |
while read -r line | |
do | |
IFS="=" read -ra keys <<< "$line" | |
travis env set ${keys[0]} ${keys[1]} --private --no-interactive | |
done < $ENV_FILE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment