Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
add back spaces after udevil parameter (from da40f3e)
Browse files Browse the repository at this point in the history
without the trailing space the command would be "udevil --quietmount -t ..."
  • Loading branch information
dnauck committed Oct 10, 2016
1 parent d06decc commit 9826e1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/plugins/meta.mount/FilesystemMounter.php
Expand Up @@ -144,7 +144,7 @@ public function mountFS(ContextInterface $ctx)
$repo = $ctx->getRepository();

if(isset($this->options["MOUNT_DEVIL"]) && !empty($this->options["MOUNT_DEVIL"]) && $this->options["MOUNT_DEVIL"]) {
$udevil = "udevil --quiet";
$udevil = "udevil --quiet ";
}else{
$udevil = "";
}
Expand Down Expand Up @@ -216,7 +216,7 @@ public function umountFS(ContextInterface $contextInterface)
$MOUNT_POINT = $this->getOption($contextInterface, "MOUNT_POINT", $user, $password);

if(isset($this->options["MOUNT_DEVIL"]) && !empty($this->options["MOUNT_DEVIL"]) && $this->options["MOUNT_DEVIL"]) {
$udevil = "udevil --quiet";
$udevil = "udevil --quiet ";
}else{
$udevil = "";
}
Expand Down

0 comments on commit 9826e1d

Please sign in to comment.