Skip to content

Commit

Permalink
Merge pull request #1363 from Dzoukr/mono-colored-output
Browse files Browse the repository at this point in the history
TERM environment property should be upper case
  • Loading branch information
forki authored Aug 22, 2016
2 parents ce85407 + 0ec557c commit 7f930c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/FAKE/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ let printEnvironment cmdArgs args =
traceFAKE "FSI-Path: %s" fsiPath
traceFAKE "MSBuild-Path: %s" msBuildExe

let hostBasedEnvArgs = seq { if isMono then yield "term", "xterm-256color" } // avoid problem with unsupported colored terminal output
let hostBasedEnvArgs = seq { if isMono then yield "TERM", "xterm-256color" } // avoid problem with unsupported colored terminal output

let containsParam param = Seq.map toLower >> Seq.exists ((=) (toLower param))

Expand Down

0 comments on commit 7f930c7

Please sign in to comment.