roc/ci/package_release.sh

5 lines
257 B
Bash
Raw Normal View History

2022-06-18 18:10:59 +03:00
#!/usr/bin/env bash
2022-06-18 20:33:10 +03:00
cp target/release/roc ./roc # to be able to exclude "target" later in the tar command
2022-08-22 17:43:14 +03:00
cp -r target/release/lib ./lib
tar -czvf $1 --exclude="target" --exclude="zig-cache" roc lib LICENSE LEGAL_DETAILS examples/hello-world crates/roc_std