eive-obsw/scripts/compress-obsw.sh
Robin Mueller 2ddd95c7fd
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
helper scripts and README section for OBSW update
2022-09-16 19:57:19 +02:00

10 lines
258 B
Bash
Executable File

#!/bin/bash
if [ -d eive-obsw-stripped ]; then
echo "No file eive-obsw-stripped found. Please ensure you are in the build folder"
fi
cmd="tar -cJvf eive-obsw.tar.xz eive-obsw-stripped"
echo "Running command ${cmd} to generate compressed OBSW"
eval ${cmd}