20 lines
577 B
Bash
20 lines
577 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
################################################################################
|
||
|
# Title: build-all.sh
|
||
|
# Description: Script to build My-distro Devuan ISO images
|
||
|
# Author: manuel rosa <manuelsilvarosa@gmail.com>
|
||
|
# Date: Outubro 29, 2023
|
||
|
# License: GPL-3.0-or-later
|
||
|
################################################################################
|
||
|
|
||
|
# update files
|
||
|
|
||
|
git pull --ff
|
||
|
|
||
|
# this script will build the 7 isos sequencialy
|
||
|
|
||
|
./my-distro-devuan-32/BldHelper.sh
|
||
|
./my-distro-devuan-32-pae/BldHelper.sh
|
||
|
./my-distro-devuan-64/BldHelper.sh
|