Skip to content

Commit 9d30cd3

Browse files
committed
[staging-intervention] Test change
1 parent 9021c60 commit 9d30cd3

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

staging_intervention/tests/specs/base.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

staging_intervention/tests/specs/extra_unstaged.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

staging_intervention/tests/specs/missing_unstaged.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

staging_intervention/tests/specs/mixed_unstaged.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)