mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-21 06:17:50 +08:00
11 lines
355 B
Bash
11 lines
355 B
Bash
#!/bin/bash
|
|
#
|
|
# Usage:
|
|
#
|
|
# $ sh .github/scripts/app/build_windows.sh
|
|
# $ _build/app_prod/rel/LivebookInstall.exe
|
|
# $ start livebook://github.com/livebook-dev/livebook/blob/main/test/support/notebooks/basic.livemd
|
|
# $ start ./test/support/notebooks/basic.livemd
|
|
set -e
|
|
|
|
MIX_ENV=prod MIX_TARGET=app mix release windows_installer --overwrite
|