Skip to content

Commit 00ed54f

Browse files
Merge pull request #682 from shawnthompson/date-fix
Remove depth option from upstream fetch command in Eleventy config
2 parents ff446d8 + 2c695f7 commit 00ed54f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.eleventy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ module.exports = function (eleventyConfig) {
239239
const upstreamUrl = 'https://github.com/gc-da11yn/gc-da11yn.github.io';
240240

241241
try {
242-
execSync(`git fetch ${upstreamUrl} main:upstream-main --force --depth=1`);
242+
execSync(`git fetch ${upstreamUrl} main:upstream-main --force`);
243243
} catch (err) {
244244
console.error('Error fetching the upstream main branch', err);
245245
}

0 commit comments

Comments
 (0)