Skip to content

Commit

Permalink
Get project from ENV var first, default to myproject
Browse files Browse the repository at this point in the history
  • Loading branch information
agrare committed Aug 31, 2018
1 parent d13bbb5 commit a8f5c25
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion bin/deploy_on_minishift
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
#!/bin/bash

project=mynamespace
project=$PROJECT
if [ -z "$project" ];
then
project=myproject
fi

# Check that minishift is installed
minishift=$(which minishift)
Expand Down

0 comments on commit a8f5c25

Please sign in to comment.