diff --git a/tutorial/03-07-branch-globbing.tape.BROKEN b/tutorial/03-07-branch-globbing.tape.BROKEN new file mode 100755 index 0000000..d13d814 --- /dev/null +++ b/tutorial/03-07-branch-globbing.tape.BROKEN @@ -0,0 +1,23 @@ +############################################################## +# Problems with branch globs # +############################################################## +# # +# Running with fewer branch values runs fine. # +# For example (Letter: a b c d) # +# # +# Running with > ~7-8 branch values runs too slowly to use # +# For example (Letter: a b c d e f g h i) # +############################################################## + +task foo + :: param=(Letter: a b c d e f g h i) + > letter +{ + echo ${param} > ${letter} +} + +task bar + < letters=$letter@foo[Letter:*] +{ + echo ${letters} +}