Skip to content
This repository was archived by the owner on Mar 2, 2020. It is now read-only.

Commit b232be8

Browse files
committed
Merge pull request #2 from ixis/develop
Merge develop into master
2 parents b6dec93 + 795e30b commit b232be8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Drupal/Variable/VariableStorage/Drush.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function writeVariable($name, $value)
6262
*/
6363
public function readVariable($name, $default = null)
6464
{
65-
$serialized = $this->execDrush("vget --format=php --exact " . escapeshellarg($name) . " 2>/dev/null");
65+
$serialized = $this->execDrush("vget --format=php --exact --pipe " . escapeshellarg($name) . " 2>/dev/null");
6666
// Skip any SSH warnings, e.g.
6767
// Warning: Permanently added 'X.X.X.X' (RSA) to the list of known hosts.
6868
// TODO: how to improve this?

0 commit comments

Comments
 (0)