mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-21 06:17:50 +08:00
14 lines
484 B
Bash
14 lines
484 B
Bash
#!/bin/bash
|
|
#
|
|
# Usage:
|
|
#
|
|
# $ sh .github/scripts/app/build_windows.sh
|
|
# $ wscript _build/app_prod/Livebook-win/LivebookLauncher.vbs
|
|
# $ start livebook://github.com/livebook-dev/livebook/blob/main/test/support/notebooks/basic.livemd
|
|
# $ start ./test/support/notebooks/basic.livemd
|
|
set -e
|
|
|
|
mix local.hex --force --if-missing
|
|
mix local.rebar --force --if-missing
|
|
MIX_ENV=prod MIX_TARGET=app mix deps.get --only prod
|
|
MIX_ENV=prod MIX_TARGET=app mix release app --overwrite
|