Skip to content

Commit

Permalink
test: enable git core.longpaths option
Browse files Browse the repository at this point in the history
  • Loading branch information
jbedard authored and clydin committed Sep 19, 2022
1 parent ba296e9 commit a4075c9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion .circleci/dynamic_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ commands:
- run: npm install -g yarn@1.22.10
- run: node --version
- run: yarn --version
- run: git config --global core.longpaths true

setup_bazel_rbe:
parameters:
Expand Down
1 change: 1 addition & 0 deletions tests/legacy-cli/e2e/utils/project.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export async function prepareProjectForE2e(name: string) {
await git('config', 'user.email', 'angular-core+e2e@google.com');
await git('config', 'user.name', 'Angular CLI E2E');
await git('config', 'commit.gpgSign', 'false');
await git('config', 'core.longpaths', 'true');

if (argv['ng-snapshots'] || argv['ng-tag']) {
await useSha();
Expand Down

0 comments on commit a4075c9

Please sign in to comment.