@rpcbase/cli 0.188.0 → 0.189.0
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/package.json +1 -1
- package/src/cmd-deploy/index.js +1 -1
package/package.json
CHANGED
package/src/cmd-deploy/index.js
CHANGED
|
@@ -275,7 +275,7 @@ export const deploy = async (argv) => {
|
|
|
275
275
|
}
|
|
276
276
|
|
|
277
277
|
const runInstanceAction = async (action, instance) => {
|
|
278
|
-
await ssh(`cd ~/apps/${baseDeployDir}/infrastructure && node ctrl.js ${action}-instance ${instance} prod`, true)
|
|
278
|
+
await ssh(`cd ~/apps/${baseDeployDir}/infrastructure && RB_DEPLOY_DIR=${shellQuote(baseDeployDir)} node ctrl.js ${action}-instance ${instance} prod`, true)
|
|
279
279
|
}
|
|
280
280
|
|
|
281
281
|
const waitForInstance = async (instance, target) => {
|