warn if old cmd is used

This commit is contained in:
Iuri Matias 2018-06-19 14:07:14 -04:00
parent 9574562602
commit 6a031e1dab
1 changed files with 4 additions and 0 deletions

View File

@ -203,6 +203,10 @@ class Cmd {
.description(__('Upload your dapp to a decentralized storage') + '.')
.action(function (env, _options) {
i18n.setOrDetectLocale(_options.locale);
if (env === "ipfs" || env === "swarm") {
console.warn(("did you mean " + "embark upload".bold + " ?").underline);
console.warn("In embark 3.1 forwards, the correct command is embark upload <environment> and the provider is configured in config/storage.js");
}
_options.env = env || 'development';
_options.logFile = _options.logfile; // fix casing
_options.logLevel = _options.loglevel; // fix casing