zeche 0.0.6 → 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 –l ${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 –l -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 –l -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zeche",
3
- "version": "0.0.6",
3
+ "version": "0.0.8",
4
4
  "description": "CLI software project handling tool",
5
5
  "repository": {
6
6
  "type": "git",