From: Shane Jaroch Date: Sat, 17 Jan 2026 13:04:10 +0000 (-0500) Subject: squash! more fixes to support container/root mount action X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=f49256d45b8d244a7bb1f43eeb1d01deb2eb10ba;p=gamesguru%2Fgit-remote-gcrypt.git squash! more fixes to support container/root mount action hopefully fixed? --- diff --git a/tests/system-test-multikey.sh b/tests/system-test-multikey.sh index 5bada03..06e6ef3 100755 --- a/tests/system-test-multikey.sh +++ b/tests/system-test-multikey.sh @@ -167,7 +167,7 @@ print_info "Step 2: Creating source repository..." { git init -- "${tempdir}/first" cd "${tempdir}/first" - git checkout -b "${default_branch}" + git checkout -B "${default_branch}" for ((i = 0; i < num_commits; ++i)); do for ((j = 0; j < files_per_commit; ++j)); do file_index=$((i * files_per_commit + j)) diff --git a/tests/system-test-repack.sh b/tests/system-test-repack.sh index c43c252..58ffb84 100755 --- a/tests/system-test-repack.sh +++ b/tests/system-test-repack.sh @@ -113,7 +113,7 @@ print_info "Step 2: Creating repository with large random files..." { git init -- "${tempdir}/first" cd "${tempdir}/first" - git checkout -b "${default_branch}" + git checkout -B "${default_branch}" for ((i = 0; i < num_commits; ++i)); do for ((j = 0; j < files_per_commit; ++j)); do file_index=$((i * files_per_commit + j)) diff --git a/tests/system-test.sh b/tests/system-test.sh index 43f37d3..2a3cf01 100755 --- a/tests/system-test.sh +++ b/tests/system-test.sh @@ -145,6 +145,7 @@ print_info "Step 2: Creating new repository with random data:" { git init -- "${tempdir}/first" cd "${tempdir}/first" + git checkout -B "${default_branch}" for ((i = 0; i < num_commits; ++i)); do for ((j = 0; j < files_per_commit; ++j)); do file_index=$(( i * files_per_commit + j ))