Skip to content

Commit

Permalink
#169, fix the docs for what happens with stdin
Browse files Browse the repository at this point in the history
  • Loading branch information
ndmitchell committed Sep 19, 2014
1 parent 616f176 commit ff5a09b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Development/Shake/Command.hs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ data CmdOption
= Cwd FilePath -- ^ Change the current directory in the spawned process. By default uses this processes current directory.
| Env [(String,String)] -- ^ Change the environment variables in the spawned process. By default uses this processes environment.
-- Use 'addPath' to modify the @$PATH@ variable, or 'addEnv' to modify other variables.
| Stdin String -- ^ Given as the @stdin@ of the spawned process. By default no @stdin@ is given.
| Stdin String -- ^ Given as the @stdin@ of the spawned process. By default the @stdin@ is inherited.
| Shell -- ^ Pass the command to the shell without escaping - any arguments will be joined with spaces. By default arguments are escaped properly.
| BinaryPipes -- ^ Treat the @stdin@\/@stdout@\/@stderr@ messages as binary. By default streams use text encoding.
| Traced String -- ^ Name to use with 'traced', or @\"\"@ for no tracing. By default traces using the name of the executable.
Expand Down

0 comments on commit ff5a09b

Please sign in to comment.