File tree Expand file tree Collapse file tree 4 files changed +4
-12
lines changed
staging_intervention/tests/specs Expand file tree Collapse file tree 4 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ initialization:
66 id : start
77 - type : bash
88 runs : |
9- #!/bin/bash
10- names=("josh" "adam" "mary" "jane" "charlie" "kristen" "alice" "john")
11- for name in "${names[@]}"; do
9+ for name in "josh" "adam" "mary" "jane" "charlie" "kristen" "alice" "john"; do
1210 touch "$name.txt"
1311 git add "$name.txt"
1412 done
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ initialization:
66 id : start
77 - type : bash
88 runs : |
9- #!/bin/bash
10- names=("josh" "adam" "mary" "jane" "charlie" "kristen" "alice" "john")
11- for name in "${names[@]}"; do
9+ for name in "josh" "adam" "mary" "jane" "charlie" "kristen" "alice" "john"; do
1210 touch "$name.txt"
1311 git add "$name.txt"
1412 done
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ initialization:
66 id : start
77 - type : bash
88 runs : |
9- #!/bin/bash
10- names=("josh" "adam" "mary" "jane" "charlie" "kristen" "alice" "john")
11- for name in "${names[@]}"; do
9+ for name in "josh" "adam" "mary" "jane" "charlie" "kristen" "alice" "john"; do
1210 touch "$name.txt"
1311 git add "$name.txt"
1412 done
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ initialization:
66 id : start
77 - type : bash
88 runs : |
9- #!/bin/bash
10- declare -a names=("josh" "adam" "mary" "jane" "charlie" "kristen" "alice" "john")
11- for name in "${names[@]}"; do
9+ for name in "josh" "adam" "mary" "jane" "charlie" "kristen" "alice" "john"; do
1210 touch "$name.txt"
1311 git add "$name.txt"
1412 done
You can’t perform that action at this time.
0 commit comments