File tree 2 files changed +8
-3
lines changed
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 18
18
"lint-and-vale" : " yarn run lint && yarn run vale" ,
19
19
"generate-code-imports" : " node scripts/generate-code-imports.js" ,
20
20
"rebuild-kinds-tags" : " python scripts/rebuild-kinds-tags.py" ,
21
- "sync-api-docs" : " /bin/sh scripts/build-api-docs.sh" ,
22
- "build-api-docs" : " /bin/sh scripts/build-api-docs.sh"
21
+ "sync-api-docs" : " ./ scripts/build-api-docs.sh" ,
22
+ "build-api-docs" : " ./ scripts/build-api-docs.sh"
23
23
},
24
24
"dependencies" : {
25
25
"@docusaurus/core" : " ^3.7.0" ,
Original file line number Diff line number Diff line change 10
10
set -e
11
11
12
12
# Vercel-specific commands and configurations
13
- if ! [[ " $OSTYPE " =~ " darwin" * ]]; then
13
+ if [[ " $OSTYPE " =~ " darwin" * ]]; then
14
+ # Required to resolve `locale.Error: unsupported locale setting`
15
+ if [ -z " $LC_ALL " ]; then
16
+ export LC_ALL=en_US.UTF-8
17
+ fi
18
+ else
14
19
echo " Detected non-Darwin host. Running Vercel-specific commands and configurations"
15
20
16
21
# Required to resolve `locale.Error: unsupported locale setting`
You can’t perform that action at this time.
0 commit comments