mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-09-04 20:14:57 +08:00
8 lines
222 B
Bash
Executable file
8 lines
222 B
Bash
Executable file
#!/bin/sh
|
|
set -euo pipefail
|
|
|
|
export ELIXIRKIT_APP_NAME=Demo
|
|
export ELIXIRKIT_PROJECT_DIR=$PWD/../..
|
|
|
|
. ../../../../elixirkit/elixirkit_swift/Scripts/build_macos_app.sh
|
|
open -W --stdout `tty` --stderr `tty` .build/Demo.app
|