We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9574562 + 6a031e1 commit 9f16740Copy full SHA for 9f16740
lib/cmd.js
@@ -203,6 +203,10 @@ class Cmd {
203
.description(__('Upload your dapp to a decentralized storage') + '.')
204
.action(function (env, _options) {
205
i18n.setOrDetectLocale(_options.locale);
206
+ if (env === "ipfs" || env === "swarm") {
207
+ console.warn(("did you mean " + "embark upload".bold + " ?").underline);
208
+ console.warn("In embark 3.1 forwards, the correct command is embark upload <environment> and the provider is configured in config/storage.js");
209
+ }
210
_options.env = env || 'development';
211
_options.logFile = _options.logfile; // fix casing
212
_options.logLevel = _options.loglevel; // fix casing
0 commit comments