Skip to content

Commit

Permalink
Do not use redir on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
Tea committed Aug 30, 2020
1 parent 969ee63 commit a8f1ecd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash
# -------------------------------------------------------------------
version=0.1.4
version=0.1.5
repo=https://github.com/active-logic/howl
url=$repo/releases/download/$version/howl.tgz
# -------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.ps1
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# First, may need to run
# set-executionpolicy remotesigned
cls
$version = "0.1.4"
$version = "0.1.5"
$repo = "https://github.com/active-logic/howl"
$url = "$repo/releases/download/$version/howl.tgz"

Expand Down
2 changes: 1 addition & 1 deletion src/Runner.howl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
// Linux: output redir causing issues for now
φ.StartInfo.CreateNoWindow = ✓;
//
∙ rdr = !OS.isLinux;
∙ rdr = OS.isWindows;
φ.StartInfo.UseShellExecute = !rdr;
φ.StartInfo.RedirectStandardOutput = rdr;
φ.StartInfo.RedirectStandardError = rdr;
Expand Down

0 comments on commit a8f1ecd

Please sign in to comment.