Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

add an option to build on windows#262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
argemiront merged 2 commits intomasterfrommulti-build-script
Apr 13, 2020
Merged
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletionsscripts/build.sh
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,9 +14,16 @@ tsc -p ./
cd web-app
npm run build
cd ..

# For Windows build: switch the next 2 lines
# cp -R ./web-app/build/ ./
cp -R ./web-app/build/ ./build
if [[ "$OSTYPE" == "msys" ]]; then
echo "linux subsystem on windows selected"
cp -R ./web-app/build/ ./
else
echo "Unix system selected"
cp -R ./web-app/build/ ./build/
fi

node scripts/fixFontPaths.js

echo "Build complete!"

[8]ページ先頭

©2009-2025 Movatter.jp