mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-11-27 14:55:20 +03:00
22 lines
549 B
Bash
Executable File
22 lines
549 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Takes last binary built by stack and packages it together with data
|
|
# into .tar.gz package.
|
|
|
|
# First and only argument is the filename of the package to be generated.
|
|
# It is optional.
|
|
|
|
DST=$PWD/${1:-wasp.tar.gz}
|
|
|
|
TMP_DIR="$(mktemp -d 2>/dev/null || mktemp -d -t wasp-bin-package)"
|
|
|
|
cp "$(stack path --local-install-root)"/bin/wasp "$TMP_DIR/wasp-bin"
|
|
cp -R "$(stack path --project-root)/data" "$TMP_DIR/data"
|
|
|
|
cd "$TMP_DIR"
|
|
tar -czf "$DST" *
|
|
|
|
if [ -n "$TMP_DIR" ]; then rm -rf "$TMP_DIR"; fi
|
|
|
|
echo "Generated binary package: $DST."
|