mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-03-13 16:25:13 +08:00
7 lines
170 B
Bash
7 lines
170 B
Bash
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
dotnet build
|
|
target_dir="$PWD/bin/Debug/net6.0-windows"
|
|
(cd ../.. && mix release --overwrite --path=${target_dir}/rel)
|
|
dotnet run --no-build
|