mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-01 02:33:54 +03:00
9 lines
246 B
Bash
Executable File
9 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
cd game
|
|
wasm-pack build --release --target web -- --no-default-features --features wasm,wasm_s3
|
|
cd pkg
|
|
aws s3 sync . s3://abstreet
|
|
echo "Have the appropriate amount of fun: http://abstreet.s3-website.us-east-2.amazonaws.com/"
|