Browse Source

Enable to pipe chains in the windows build

rexim 4 years ago
parent
commit
01846952eb
1 changed files with 2 additions and 2 deletions
  1. 2 2
      examples/pipe.c

+ 2 - 2
examples/pipe.c

@@ -5,8 +5,8 @@ int main(void)
 {
 {
     INFO("------------------------------");
     INFO("------------------------------");
     CHAIN(IN(PATH("examples", "pipe.c")),
     CHAIN(IN(PATH("examples", "pipe.c")),
-          CHAIN_CMD(PATH("tools", "rot13"))
-          // CHAIN_CMD(PATH("tools", "hex")),
+          CHAIN_CMD(PATH("tools", "rot13")),
+          CHAIN_CMD(PATH("tools", "hex"))
           // OUT("output.txt")
           // OUT("output.txt")
          );
          );
     INFO("------------------------------");
     INFO("------------------------------");