We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 304635e commit 843b891Copy full SHA for 843b891
1 file changed
.github/workflows/tests.yml
@@ -47,12 +47,12 @@ jobs:
47
--mount type=volume,source=rootmount,target=/root \
48
--mount type=bind,source=./,target=/app \
49
-t hjwp/obeythetestinggoat-book-tester:latest \
50
- bash -c 'git submodule status | cut -w -f2 | xargs -I% bash -c "echo %"'
+ bash -c 'git submodule status | cut -d" " -f2 | xargs -I% bash -c "echo %"'
51
docker run --rm \
52
53
54
55
- bash -c 'git submodule status | cut -w -f2 | xargs -I% bash -c "cd % && git fetch"'
+ bash -c 'git submodule status | cut -d" " -f2 | xargs -I% bash -c "cd % && git fetch"'
56
57
- name: check submodule branches
58
run: |
0 commit comments