@lazycatcloud/lzc-cli 1.2.31 → 1.2.32

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.
@@ -117,7 +117,9 @@ export class DebugBridge {
117
117
  })
118
118
  // spawn 事件只是进程启动成功的事件,并不是ssh成功连接上的事件。所以这里使
119
119
  // 用前面的一个 isDevshell 判断是否已经启动这个容器,再使用 spawn
120
- stream.on("spawn", onconnect)
120
+ stream.on("spawn", () => {
121
+ onconnect && onconnect()
122
+ })
121
123
  })
122
124
  }
123
125
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lazycatcloud/lzc-cli",
3
- "version": "1.2.31",
3
+ "version": "1.2.32",
4
4
  "description": "lazycat cloud developer kit",
5
5
  "files": [
6
6
  "template",
@@ -1,4 +1,4 @@
1
- FROM registry.cn-hangzhou.aliyuncs.com/lazycatcloud/devshell:v0.0.5
1
+ FROM registry.lazycat.cloud/lzc-cli/devshell:v0.0.5
2
2
 
3
3
  RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
4
4
 
@@ -1,4 +1,4 @@
1
- FROM registry.cn-hangzhou.aliyuncs.com/lazycatcloud/devshell:v0.0.5
1
+ FROM registry.lazycat.cloud/lzc-cli/devshell:v0.0.5
2
2
 
3
3
  RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.ustc.edu.cn/g' /etc/apk/repositories
4
4