Skip to content

Commit 560604d

Browse files
committed
[BUGFIX] Do not double escape path
Resolves: #797
1 parent 73757e0 commit 560604d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Task/Neos/Flow/CopyConfigurationTask.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function execute(Node $node, Application $application, Deployment $deploy
7575
}
7676
$createDirectoryCommand = '"mkdir -p ' . $escapedTargetPath . '"';
7777
$commands[] = ltrim("{$expect} ssh {$sshOptions}{$sshPort}{$username}{$hostname} {$createDirectoryCommand}");
78-
$commands[] = ltrim("{$expect} scp {$sshOptions}{$scpPort}{$escapedSourcePath} {$username}{$hostname}:\"{$escapedTargetPath}\"");
78+
$commands[] = ltrim("{$expect} scp {$sshOptions}{$scpPort}{$escapedSourcePath} {$username}{$hostname}:{$escapedTargetPath}");
7979
}
8080
}
8181

0 commit comments

Comments
 (0)