-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the custom variable checker methods
- Loading branch information
Kotowick
committed
Mar 29, 2017
1 parent
913cd17
commit d792539
Showing
6 changed files
with
38 additions
and
27 deletions.
There are no files selected for viewing
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
Binary file not shown.
Binary file not shown.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
|
||
if [ -n "$VOLUME_PATH" ]; then | ||
echo "Sourcing any .env files in $VOLUME_PATH" | ||
source $VOLUME_PATH/*.env | ||
if ls $VOLUME_PATH/*.env > /dev/null 2>&1; then | ||
echo "Sourcing any .env files in $VOLUME_PATH" | ||
source $VOLUME_PATH/*.env | ||
fi | ||
fi | ||
|
||
go-deploy -v upsert environment | ||
go-deploy -v upsert |