Skip to content

Commit 018e48c

Browse files
committed
Merge pull request #15 from nelsonkopliku/master
Fixed variable interpolation in command
2 parents c8db6b6 + 81f0e28 commit 018e48c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/DeployCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
7070
}
7171

7272
if (file_exists($config_root_path."rsync_exclude_{$env}.txt")) {
73-
$rsync_options .= sprintf(' --exclude-from="%srsync_exclude_{$env}.txt"', $config_root_path);
73+
$rsync_options .= sprintf(" --exclude-from=\"%srsync_exclude_{$env}.txt\"", $config_root_path);
7474
$exclude_file_found = true;
7575
}
7676

0 commit comments

Comments
 (0)