Fix command execution over SSH

refs #5223
This commit is contained in:
Johannes Meyer 2013-12-06 14:09:04 +01:00
parent 7f64e58c32
commit c1d31179ef
1 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
{
"commands": {
"copy": "scp -qF ssh_config {0} default:{1}",
"exec": "ssh -F ssh_config default {0}",
"clean": "ssh -F ssh_config default rm -f {0}"
"exec": "ssh -F ssh_config default '{0}'",
"clean": "ssh -F ssh_config default 'rm -f {0}'"
},
"settings": {
"test_root": "/tmp"