20 lines
589 B
Bash
20 lines
589 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
################################################################################
|
||
|
# Title: build-all.sh
|
||
|
# Description: Script to build My-distro Ubunto ISO image
|
||
|
# 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-ubuntu-20.04-lts/BldHelper.sh
|
||
|
./my-distro-ubuntu-22.04-lts/BldHelper.sh
|
||
|
./my-distro-ubuntu-23.04/BldHelper.sh
|