mirror of
https://github.com/actions/checkout.git
synced 2026-06-26 18:03:53 +08:00
Compare commits
2 Commits
v7
...
9f2eda4087
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9f2eda4087 | ||
|
|
38cd156730 |
2
dist/index.js
vendored
2
dist/index.js
vendored
@@ -983,7 +983,7 @@ class GitCommandManager {
|
||||
submoduleUpdate(fetchDepth, recursive) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
const args = ['-c', 'protocol.version=2'];
|
||||
args.push('submodule', 'update', '--init', '--force');
|
||||
args.push('submodule', 'update', '--init', '--force', '--checkout');
|
||||
if (fetchDepth > 0) {
|
||||
args.push(`--depth=${fetchDepth}`);
|
||||
}
|
||||
|
||||
@@ -448,7 +448,7 @@ class GitCommandManager {
|
||||
|
||||
async submoduleUpdate(fetchDepth: number, recursive: boolean): Promise<void> {
|
||||
const args = ['-c', 'protocol.version=2']
|
||||
args.push('submodule', 'update', '--init', '--force')
|
||||
args.push('submodule', 'update', '--init', '--force', '--checkout')
|
||||
if (fetchDepth > 0) {
|
||||
args.push(`--depth=${fetchDepth}`)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user