14 lines
405 B
Plaintext
14 lines
405 B
Plaintext
|
#!/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"
|