Skip to content

Commit

Permalink
line breaks for easier pasting
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkeller committed Dec 11, 2015
1 parent f15b894 commit 54140f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,10 +217,10 @@ function deployLastCommit(bucket_environment, trigger_type, trigger, local_path,
// Otherwise, things went great!
// Print the commands that got us to this auspicious moment.
// Add a `_` for the `when` value because that needs to be one single string for the cli arg reader
console.log(chalk.cyan('Settings: ') + 'swoop deploy -e ' + bucket_environment + ' -m ' + trigger_type + ' -l ' + local_path + ' -r ' + remote_path + ' -w ' + when.replace(' ', '_'));
console.log(chalk.cyan('Settings:\n') + 'swoop deploy -e ' + bucket_environment + ' -m ' + trigger_type + ' -l ' + local_path + ' -r ' + remote_path + ' -w ' + when.replace(' ', '_'));
console.log(chalk.green('Push successful!'));
var index = (bucket_environment == 'staging') ? '/index.html' : ''
console.log('View at', chalk.bold('http://' + config.publishing.buckets[bucket_environment] + '/' + remote_path + index));
console.log('View at:\n', chalk.bold('http://' + config.publishing.buckets[bucket_environment] + '/' + remote_path + index));
}
});
});
Expand Down

0 comments on commit 54140f7

Please sign in to comment.