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:
6
6
id : start
7
7
- type : bash
8
8
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
12
10
touch "$name.txt"
13
11
git add "$name.txt"
14
12
done
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ initialization:
6
6
id : start
7
7
- type : bash
8
8
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
12
10
touch "$name.txt"
13
11
git add "$name.txt"
14
12
done
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ initialization:
6
6
id : start
7
7
- type : bash
8
8
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
12
10
touch "$name.txt"
13
11
git add "$name.txt"
14
12
done
Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ initialization:
6
6
id : start
7
7
- type : bash
8
8
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
12
10
touch "$name.txt"
13
11
git add "$name.txt"
14
12
done
You can’t perform that action at this time.
0 commit comments