mirror of
https://github.com/desktop/desktop
synced 2024-10-30 06:03:10 +00:00
Revert file transport setting
This commit is contained in:
parent
0c79553b8c
commit
7cd667172c
1 changed files with 10 additions and 1 deletions
|
@ -57,7 +57,16 @@ describe('git/rev-parse', () => {
|
|||
secondRepoPath,
|
||||
''
|
||||
)
|
||||
await git(['submodule', 'add', '../repo2'], firstRepoPath, '')
|
||||
|
||||
await git(
|
||||
[
|
||||
// Git 2.38 (backported into 2.35.5) changed the default here to 'user'
|
||||
...['-c', 'protocol.file.allow=always'],
|
||||
...['submodule', 'add', '../repo2'],
|
||||
],
|
||||
firstRepoPath,
|
||||
''
|
||||
)
|
||||
|
||||
expect(await getRepositoryType(firstRepoPath)).toMatchObject({
|
||||
kind: 'regular',
|
||||
|
|
Loading…
Reference in a new issue