mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-02-23 22:37:41 +08:00
8 lines
166 B
Bash
8 lines
166 B
Bash
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
. `dirname $0`/env.sh
|
|
|
|
rm -rf $target_dir
|
|
dotnet build $build_args
|
|
(cd ../../.. && mix release app --overwrite --path=${target_dir}/rel)
|