Skip to content

Commit

Permalink
TAG
Browse files Browse the repository at this point in the history
  • Loading branch information
dacoffey committed May 11, 2021
1 parent 1e043b2 commit a7c2f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/xtnode.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ else if (args[0] == 'evalxtnode' || args[1] == 'evalxtnode') {
}
else if (args[0] == 'xtnodegit' || args[1] == 'xtnodegit') {
let gitrepo = args[1]; if (args[1] == 'xtnodegit') { gitrepo = args[2]; }
let cmd = 'cd / ; git clone ' + gitrepo + ' /app';
let cmd = 'cd / ; git clone ' + gitrepo + ' /app ; cd /app ; npm install';
let cmdout = XT.EXECA.commandSync(cmd, { shell: true }).stdout;
console.log(cmd);
console.log(cmdout);
Expand Down

0 comments on commit a7c2f24

Please sign in to comment.