mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-06 03:50:31 +00:00
9 lines
No EOL
247 B
Bash
Executable file
9 lines
No EOL
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 |