You've already forked retrowin32
mirror of
https://github.com/encounter/retrowin32.git
synced 2026-03-30 11:35:51 -07:00
75ee095b72
Fixes #35.
14 lines
318 B
Bash
Executable File
14 lines
318 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script is used to deploy the website.
|
|
# It expects the `pages` branch to be checked out in the `deploy` subdir;
|
|
# set that up with:
|
|
# git worktree add deploy pages
|
|
|
|
set -e
|
|
|
|
(cd appdb && ./run.sh)
|
|
make -C web profile=lto
|
|
(cd web && npm run build)
|
|
cp web/*.css web/*.html web/*.wasm web/*.png deploy
|