helper scripts and README section for OBSW update
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good

This commit is contained in:
2022-09-16 19:57:19 +02:00
parent b308a037b4
commit 2ddd95c7fd
3 changed files with 63 additions and 0 deletions

9
scripts/compress-obsw.sh Executable file
View File

@ -0,0 +1,9 @@
#!/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}

3
scripts/prepare-obsw-update.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
source create-version-file.sh
source compress-obsw.sh