We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94c31a1 commit e4f3beeCopy full SHA for e4f3bee
2 files changed
modules/deploy/lib/sshConnect.js
@@ -28,7 +28,7 @@ module.exports = function*(host) {
28
29
30
client.runInBuild = function(cmd, options) {
31
- return sshExec(client, `cd ${config.deploy.buildPath}; ${cmd}`, options);
+ return sshExec(client, `cd ${config.deploy.buildPath}; NODE_LANG=${config.lang} ${cmd}`, options);
32
};
33
34
client.run = function(cmd, options) {
modules/deploy/tasks/update.js
@@ -25,7 +25,7 @@ module.exports = function() {
25
try {
26
// make sure tests pass unless --no-test
27
if (args.test !== false) {
- yield* client.runInBuild(`NODE_LANG=ru npm test`);
+ yield* client.runInBuild(`npm test`);
}
yield* client.runInTarget(`git reset --hard`);
0 commit comments