Separate automake scripts

This commit is contained in:
Fierelier 2022-09-26 11:09:31 +02:00
parent 6583b436f0
commit 7db1608bcf
2 changed files with 16 additions and 2 deletions

View File

@ -4,11 +4,11 @@ if [ -d "output" ]; then
rm -rf "output"
fi
wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish
wdvn-make output base hardware graphical graphical-xfce4 live finish
wdvn-image-iso output "$(wdvn-name).iso"
rm -rf "output"
source wdvn-env-amd64
wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish
wdvn-make output base hardware graphical graphical-xfce4 live finish
wdvn-image-iso output "$(wdvn-name).iso"
rm -rf "output"

14
path/wdvn-automake-proprietary Executable file
View File

@ -0,0 +1,14 @@
#!/bin/bash
set -e
if [ -d "output" ]; then
rm -rf "output"
fi
wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish
wdvn-image-iso output "$(wdvn-name)_proprietary.iso"
rm -rf "output"
source wdvn-env-amd64
wdvn-make output base hardware hardware-proprietary graphical graphical-xfce4 live finish
wdvn-image-iso output "$(wdvn-name)_proprietary.iso"
rm -rf "output"