@cloudbase/cli 2.6.0-alpha.1 → 2.6.0-alpha.2
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/commands/fun/base.js +6 -0
- package/package.json +1 -1
package/lib/commands/fun/base.js
CHANGED
|
@@ -60,6 +60,9 @@ let FunListCommand = class FunListCommand extends common_1.Command {
|
|
|
60
60
|
if (!envId) {
|
|
61
61
|
envId = yield _selectEnv();
|
|
62
62
|
}
|
|
63
|
+
else {
|
|
64
|
+
log.info(`当前环境 Id:${envId}`);
|
|
65
|
+
}
|
|
63
66
|
try {
|
|
64
67
|
loading.start('获取函数式托管服务列表中…');
|
|
65
68
|
let serverListRes = yield scfService
|
|
@@ -149,6 +152,9 @@ let FunDeployCommand = class FunDeployCommand extends common_1.Command {
|
|
|
149
152
|
if (!envId) {
|
|
150
153
|
envId = yield _selectEnv();
|
|
151
154
|
}
|
|
155
|
+
else {
|
|
156
|
+
log.info(`当前环境 Id:${envId}`);
|
|
157
|
+
}
|
|
152
158
|
if (!serviceName) {
|
|
153
159
|
let pkgName = '';
|
|
154
160
|
try {
|