Files
checkout/__test__/verify-submodules-recursive.sh
Kai 67ead93a69
Check dist / check-dist (push) Canceled after 2s
CodeQL / Analyze (javascript) (push) Canceled after 3s
Licensed / Check licenses (push) Canceled after 5s
Build and Test / test (macos-latest) (push) Canceled after 0s
Build and Test / test (windows-latest) (push) Canceled after 0s
Build and Test / test-git-container (push) Canceled after 0s
Build and Test / test-output (push) Canceled after 0s
Build and Test / build (push) Canceled after 5s
Build and Test / test (ubuntu-latest) (push) Canceled after 1s
Build and Test / test-proxy (push) Canceled after 1s
Build and Test / test-bypass-proxy (push) Canceled after 0s
first commit
2026-09-21 00:18:16 +08:00

27 lines
750 B
Bash
Executable File

#!/bin/bash
if [ ! -f "./submodules-recursive/regular-file.txt" ]; then
echo "Expected regular file does not exist"
exit 1
fi
if [ ! -f "./submodules-recursive/submodule-level-1/submodule-file.txt" ]; then
echo "Expected submodule file does not exist"
exit 1
fi
if [ ! -f "./submodules-recursive/submodule-level-1/submodule-level-2/nested-submodule-file.txt" ]; then
echo "Expected nested submodule file does not exists"
exit 1
fi
echo "Testing persisted credential"
pushd ./submodules-recursive/submodule-level-1/submodule-level-2
git config --local --includes --name-only --get-regexp http.+extraheader && git fetch
if [ "$?" != "0" ]; then
echo "Failed to validate persisted credential"
popd
exit 1
fi
popd