From 02dfb6fa9ba8269e9d5906f1c87f60495fd0fa98 Mon Sep 17 00:00:00 2001 From: drmrbrewer Date: Mon, 29 Jan 2018 08:41:21 +0000 Subject: [PATCH] Minor typo / grammar Also, at the end of the build when it says `App is available at:` I think that if https has not yet been enabled for the app concerned, then the link is wrong... it should be http not https. --- app-cli/captainduckduck-deploy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app-cli/captainduckduck-deploy.js b/app-cli/captainduckduck-deploy.js index 5533029..ef846af 100755 --- a/app-cli/captainduckduck-deploy.js +++ b/app-cli/captainduckduck-deploy.js @@ -369,7 +369,7 @@ function sendFileToCaptain(machineToDeploy, zipFileFullPath, appName, gitHash, b savePropForDirectory(MACHINE_TO_DEPLOY, machineToDeploy); if (data.status === 100) { - console.log(chalk.green('Deployed successful: ') + appName); + console.log(chalk.green('Deployed successfully: ') + appName); console.log(' '); } else if (data.status === 101) { console.log(chalk.green('Building started: ') + appName); @@ -455,7 +455,7 @@ function startFetchingBuildLogs(machineToDeploy, appName) { if (data && !data.isAppBuilding) { console.log(' '); if (!data.isBuildFailed) { - console.log(chalk.green('Deployed successful: ') + appName); + console.log(chalk.green('Deployed successfully: ') + appName); console.log(chalk.magenta('App is available at ') + (machineToDeploy.baseUrl.replace('//captain.', '//' + appName + '.'))); } else { console.error(chalk.red('\nSomething bad happened. Cannot deploy "' + appName + '"\n'));