mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-04 20:14:57 +08:00
7 lines
162 B
Bash
Executable file
7 lines
162 B
Bash
Executable file
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
dotnet build
|
|
target_dir="$PWD/bin/Debug/net6.0"
|
|
(cd ../.. && mix release --overwrite --path=${target_dir}/rel)
|
|
dotnet run --no-build
|