From 04f03f39af39446c0eaa684b15c9e051cb93c0ba Mon Sep 17 00:00:00 2001 From: Muthu Kumar Date: Fri, 3 Nov 2017 16:50:51 +0530 Subject: [PATCH] up to v.0.1.5, up [static|proxy|kill] works --- dev.com.undefined | 2 +- index.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dev.com.undefined b/dev.com.undefined index 965be85..7c50cdf 160000 --- a/dev.com.undefined +++ b/dev.com.undefined @@ -1 +1 @@ -Subproject commit 965be8551443f1a797ec528eb37458547f895d1b +Subproject commit 7c50cdf8f2e610da709443ecfec22f5991c04f27 diff --git a/index.js b/index.js index 98ae4d3..9d200ea 100644 --- a/index.js +++ b/index.js @@ -16,7 +16,7 @@ var createStaticServer = require('./actions/createStaticServer'); var killServer = require('./actions/killServer'); // Check for requirements such as OS version and nginx install. Throw and exit if requirements not found. #Roadmap: Add ability to satisfy any possible requirements. -// requirements(); // Comment in development and uncomment this line in production. This should check whether the OS is compatible with this version of `up` +requirements(); // Comment in development and uncomment this line in production. This should check whether the OS is compatible with this version of `up` program .version('0.1.5'); @@ -51,7 +51,7 @@ program .description('Kill a server.') .action(function (domain, outPort = 80) { killServer(domain, outPort); - console.log("Done! Your server has been killed!\n"); + console.log("\nDone! Your server has been killed!\n"); }); program