Merge pull request #394 from terrafrost/scp-spaces

SCP: add support for file names with spaces

* terrafrost/scp-spaces:
  SCP: always encapsulate filenames within double quotes
  SCP: add support for file names with spaces
This commit is contained in:
Andreas Fischer 2014-07-05 17:40:01 +02:00
commit ba24e04729

View File

@ -170,7 +170,7 @@ class Net_SCP
return false;
}
if (!$this->ssh->exec('scp -t ' . $remote_file, false)) { // -t = to
if (!$this->ssh->exec('scp -t "' . $remote_file . '"', false)) { // -t = to
return false;
}
@ -245,7 +245,7 @@ class Net_SCP
return false;
}
if (!$this->ssh->exec('scp -f ' . $remote_file, false)) { // -f = from
if (!$this->ssh->exec('scp -f "' . $remote_file . '"', false)) { // -f = from
return false;
}