mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 20:28:02 +00:00
4 lines
301 B
Bash
Executable file
4 lines
301 B
Bash
Executable file
#!/usr/bin/env bash
|
|
cp target/release/roc ./roc # to be able to exclude "target" later in the tar command
|
|
cp -r target/release/lib ./lib
|
|
tar -czvf $1 --exclude="target" --exclude="zig-cache" roc lib LICENSE LEGAL_DETAILS examples/helloWorld.roc examples/platform-switching examples/cli crates/roc_std
|