Skip to content

Commit 2e2886f

Browse files
committed
Escape wildcard character in custom build command
The wildcard glob matched files in the current directory which resulted in `git fetch` failing with: fatal: couldn't find remote ref refs/heads/LICENSE
1 parent e65c593 commit 2e2886f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ build:
1313
python: "3.7"
1414
jobs:
1515
post_checkout:
16-
- git remote set-branches origin '*' || true
16+
- git remote set-branches origin '\*' || true
1717
- git fetch --unshallow || true
1818

1919
# Build documentation in the doc/source/ directory with Sphinx

0 commit comments

Comments
 (0)