esoftplay 0.0.142-c → 0.0.142-d
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/bin/cli.js +6 -0
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -1237,6 +1237,12 @@ function switchStatus(status) {
|
|
|
1237
1237
|
const [usr, pwd] = cjson.config.build
|
|
1238
1238
|
command(`eas logout && expect -c 'spawn eas login; expect "Email or username"; send "${usr}\r"; expect "Password"; send "${pwd}\r"; expect eof;'`)
|
|
1239
1239
|
}
|
|
1240
|
+
if (cjson.config.hasOwnProperty('post_script')) {
|
|
1241
|
+
eval(cjson.config.post_script)
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
if (valid) {
|
|
1245
|
+
|
|
1240
1246
|
}
|
|
1241
1247
|
}
|
|
1242
1248
|
if (valid && fs.existsSync(gplist))
|