File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ var clc = require('cli-color');
1010
1111var cloudfront_production = 'https://d50sg51l36z7c.cloudfront.net' ;
1212var cloudfront_stage = 'https://d51ivijxlr7mx.cloudfront.net' ;
13+ var cloudfront_vagrant = 'https://vagrant-client.apiengine.io:40443' ;
1314
1415// Logging helpers
1516
@@ -31,12 +32,12 @@ var log = function (message, _type) {
3132
3233log ( 'Api Engine Client Builder' , types . heading )
3334
34-
35-
36-
3735if ( process . argv [ 2 ] === 'stage' ) {
3836 var cloudfront = cloudfront_stage ;
3937 log ( 'Staging enviroment selected' , types . label )
38+ } else if ( process . argv [ 2 ] === 'vagrant' ) {
39+ var cloudfront = cloudfront_vagrant ;
40+ log ( 'Vagrant enviroment selected' , types . label )
4041} else {
4142 var cloudfront = cloudfront_production ;
4243 log ( 'Production enviroment selected' , types . label )
You can’t perform that action at this time.
0 commit comments