Rustelo/scripts/dist-pack.sh

10 lines
370 B
Bash
Raw Normal View History

2026-02-08 20:18:46 +00:00
#!/bin/bash
2026-02-08 20:37:49 +00:00
[ -z "$1" ] && echo "No OS ARCH is provided (ej: linux-amd64) " && exit
2026-02-08 20:18:46 +00:00
OS_ARCH=$1
TARGET_PATH=dist/jpl-website-$OS_ARCH.tar.gz
2026-02-08 20:37:49 +00:00
TARGET_LIST=scripts/dist-list-files
2026-02-08 20:18:46 +00:00
if tar --exclude='.DS_Store' -czf $TARGET_PATH -T $TARGET_LIST ; then
echo "--------------------------------------------------------------"
echo "$TARGET_LIST PACKED IN $TARGET_PATH"
fi