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

Commit

Permalink
Fix javascript error because of udevil output
Browse files Browse the repository at this point in the history
  • Loading branch information
c12simple committed Aug 29, 2016
1 parent eb5afdb commit da40f3e
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 @@ -145,7 +145,7 @@ public function mountFS(ContextInterface $ctx)
$repo = $ctx->getRepository(); $repo = $ctx->getRepository();


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


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

0 comments on commit da40f3e

Please sign in to comment.