mirror of
https://github.com/livebook-dev/livebook.git
synced 2024-11-10 17:15:09 +08:00
12 lines
190 B
Bash
12 lines
190 B
Bash
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
. `dirname $0`/env.sh
|
|
|
|
rm -rf $target_dir
|
|
dotnet build Livebook.csproj $build_args
|
|
|
|
(
|
|
cd ../../..
|
|
mix release app --overwrite --path=${target_dir}/rel
|
|
)
|