@dishantlangayan/sc-cli-core 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/sc-command.js +1 -1
- package/package.json +1 -1
package/lib/sc-command.js
CHANGED
|
@@ -48,7 +48,7 @@ export class ScCommand extends Command {
|
|
|
48
48
|
// Check if Access Token is set
|
|
49
49
|
const value = envVars.getString(EnvironmentVariable.SC_ACCESS_TOKEN);
|
|
50
50
|
if (!value) {
|
|
51
|
-
|
|
51
|
+
this.error(`Environment variable ${EnvironmentVariable.SC_ACCESS_TOKEN} is not set and required for any API operations.`);
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
}
|