zeche 0.0.5 → 0.0.8

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.
@@ -58,7 +58,7 @@ class SyncService {
58
58
  localToLocal(source, target) {
59
59
  let commands = [
60
60
  `mkdir -p ${target}`,
61
- `rsync -r ${source} ${target}`
61
+ `rsync -r --links ${source} ${target}`
62
62
  ];
63
63
  this.services.execService.exec(commands);
64
64
  }
@@ -70,7 +70,7 @@ class SyncService {
70
70
  const key = targetEnvironment.ssh.key;
71
71
  let commands = [
72
72
  SyncService.getSSHCommand(targetEnvironment, `mkdir -p ${target}`),
73
- `rsync -r -e "ssh -i ${key} ${sshParams}" ${source} ${user}@${host}:${target}`
73
+ `rsync -r --links -e "ssh -i ${key} ${sshParams}" ${source} ${user}@${host}:${target}`
74
74
  ];
75
75
  this.services.execService.exec(commands);
76
76
  }
@@ -89,7 +89,7 @@ class SyncService {
89
89
  const key = sourceEnvironment.ssh.key;
90
90
  let commands = [];
91
91
  commands.push(`mkdir -p ${target}`);
92
- commands.push(`rsync -r -e "ssh -i ${key} ${sshParams}" ${user}@${host}:${source} ${target}`);
92
+ commands.push(`rsync -r --links -e "ssh -i ${key} ${sshParams}" ${user}@${host}:${source} ${target}`);
93
93
 
94
94
  this.services.execService.exec(commands);
95
95
  }
@@ -188,4 +188,4 @@ class SyncService {
188
188
 
189
189
  }
190
190
 
191
- module.exports = SyncService;
191
+ module.exports = SyncService;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeche",
3
- "version": "0.0.5",
3
+ "version": "0.0.8",
4
4
  "description": "CLI software project handling tool",
5
5
  "repository": {
6
6
  "type": "git",
@@ -24,7 +24,7 @@
24
24
  "commander": "^2.15.1",
25
25
  "dotenv": "^6.2.0",
26
26
  "dotenv-expand": "^4.2.0",
27
- "lodash": "^4.17.11",
27
+ "lodash": "^4.17.15",
28
28
  "moment": "^2.23.0",
29
29
  "opn": "^5.3.0",
30
30
  "ora": "^3.0.0"