mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
9 lines
247 B
Bash
Executable File
9 lines
247 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
# https://vaneyckt.io/posts/safer_bash_scripts_with_set_euxo_pipefail/
|
|
set -euxo pipefail
|
|
|
|
cargo run -- build
|
|
mkdir -p SwiftUIDemo.app/Contents/MacOS/
|
|
mv swiftui SwiftUIDemo.app/Contents/MacOS/SwiftUIDemo
|
|
open SwiftUIDemo.app |