1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-26 04:00:59 +01:00

runProgram backup2

This commit is contained in:
Wouter den Breejen 2007-07-06 15:20:46 +00:00
parent 0a4a3a1b68
commit 40161d0be1
2 changed files with 2 additions and 1 deletions

View file

@ -49,6 +49,7 @@ public:
typedef list<string> Strings;
typedef list<Strings> StringsList;
typedef set<string> StringSet;
typedef set<StringSet> SetStringSet;

View file

@ -773,7 +773,7 @@ void killUser(uid_t uid)
string runProgram(Path program, bool searchPath, const Strings & args)
{
/* Split args based on | for pipe-ing */
StringsList l;
/* Create a pipe. */
Pipe pipe;