fix: fix build.sh (close #1026)

This commit is contained in:
JustSong
2024-02-25 01:53:27 +08:00
parent 32387d9c20
commit 0664bdfda1
4 changed files with 7 additions and 8 deletions

View File

@@ -1,13 +1,12 @@
#!/bin/sh
version=$(cat VERSION)
themes=$(cat THEMES)
IFS=$'\n'
pwd
for theme in $themes; do
while IFS= read -r theme; do
echo "Building theme: $theme"
cd $theme
cd "$theme"
npm install
DISABLE_ESLINT_PLUGIN='true' REACT_APP_VERSION=$version npm run build
cd ..
done
done < THEMES