mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-04 20:14:57 +08:00
7 lines
160 B
Bash
Executable file
7 lines
160 B
Bash
Executable file
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
swift build
|
|
target_dir=`swift build --show-bin-path`
|
|
(cd ../.. && mix release --overwrite --path=$target_dir/rel)
|
|
$target_dir/demo
|