-
I want to run the spell checker locally. I ran the command: ./script/verify But for some reason, the |
Beta Was this translation helpful? Give feedback.
Answered by
maelvls
May 2, 2022
Replies: 1 comment
-
To fix the issue, I ran: git clean -fd
rm -rf themes node_modules And Details: I found out that it only hangs where there are "lefover" files from Hugo builds. The following will trigger the issue: git fetch origin refs/pull/901/head:pr-901
git checkout pr-901
npm install
./script/verify-release
git fetch origin refs/pull/927/head:pr-927
git checkout pr-927
rm -rf node_modules
./scripts/verify The command hangs: Looking at the state of my git checkout, it seems there are tons of leftovers from a previous Hugo build: git status # See below output. Output of "git status" after switching branches
These tons of files seem to bog down |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
maelvls
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To fix the issue, I ran:
And
./scripts/verify
works again.Details: I found out that it only hangs where there are "lefover" files from Hugo builds. The following will trigger the issue:
The command hangs:
Looking at the state of my git checkout, it seems there are tons of leftovers from a previous Hugo build:
git status # See below output.
Output of "git status" after switching branches