You've already forked retrowin32
mirror of
https://github.com/encounter/retrowin32.git
synced 2026-03-30 11:35:51 -07:00
13 lines
295 B
Bash
Executable File
13 lines
295 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
|
|
|
|
make -C web profile=lto
|
|
(cd web && npm run build)
|
|
cp web/*.css web/*.html web/*.wasm web/*.png deploy
|