Created
February 9, 2018 16:05
-
-
Save jlandure/1c27992ad5c6e139e5625bb958157360 to your computer and use it in GitHub Desktop.
Shell replacement
This file contains hidden or 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
| #!/bin/sh | |
| #export DEVSHELL_PROJECT_ID="demoing" | |
| DEVSHELL_PROJECT_ID=${DEVSHELL_PROJECT_ID:-'ices-demo'} # If variable not set, set it to default. | |
| echo "begin" | |
| echo $DEVSHELL_PROJECT_ID | |
| export DEVSHELL_PROJECT_ID=$DEVSHELL_PROJECT_ID | |
| echo "end" | |
| env | grep DEVSHELL_PROJECT_ID | |
| #export VERSION=$(cat package.json | grep version | cut -d'"' -f4) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment