Skip to content

Commit

Permalink
depoy code server using site ssl and custom css
Browse files Browse the repository at this point in the history
  • Loading branch information
bobmagicii committed Oct 14, 2024
1 parent d6679eb commit 2a57e4c
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions src/Nether/Console/ProcessRunner.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,34 @@

namespace Nether\Console;

use Nether\Common;

################################################################################
################################################################################

class ProcessRunner {

public mixed
$Proc;

public string
$Line;

public bool
$Verbose;

public mixed
$Proc;

public array
$Pipe = [];

public bool
$Verbose;
public Common\Datastore
$Env;

public function
__Construct($Line, bool $Verbose=FALSE) {

$this->Line = $Line;
$this->Verbose = $Verbose;
$this->Env = new Common\Datastore;

return;
}
Expand All @@ -36,7 +42,9 @@ public function
$this->Proc = proc_open(
$this->Line,
[ ['pipe', 'r'], ['pipe', 'w'], ['pipe', 'w'] ],
$this->Pipe
$this->Pipe,
NULL,
$this->Env->Export()
);

return $this;
Expand Down

0 comments on commit 2a57e4c

Please sign in to comment.