Skip to content

Commit 02dfb6f

Browse files
authored
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.
1 parent 509f87a commit 02dfb6f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app-cli/captainduckduck-deploy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ function sendFileToCaptain(machineToDeploy, zipFileFullPath, appName, gitHash, b
369369
savePropForDirectory(MACHINE_TO_DEPLOY, machineToDeploy);
370370

371371
if (data.status === 100) {
372-
console.log(chalk.green('Deployed successful: ') + appName);
372+
console.log(chalk.green('Deployed successfully: ') + appName);
373373
console.log(' ');
374374
} else if (data.status === 101) {
375375
console.log(chalk.green('Building started: ') + appName);
@@ -455,7 +455,7 @@ function startFetchingBuildLogs(machineToDeploy, appName) {
455455
if (data && !data.isAppBuilding) {
456456
console.log(' ');
457457
if (!data.isBuildFailed) {
458-
console.log(chalk.green('Deployed successful: ') + appName);
458+
console.log(chalk.green('Deployed successfully: ') + appName);
459459
console.log(chalk.magenta('App is available at ') + (machineToDeploy.baseUrl.replace('//captain.', '//' + appName + '.')));
460460
} else {
461461
console.error(chalk.red('\nSomething bad happened. Cannot deploy "' + appName + '"\n'));

0 commit comments

Comments
 (0)