2023-10-31 13:07:17 -01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
################################################################################
|
|
|
|
# Title: build-all.sh
|
2023-10-31 13:08:26 -01:00
|
|
|
# Description: Script to build My-distro Ubunto ISO image
|
2023-10-31 13:07:17 -01:00
|
|
|
# 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
|
|
|
|
|
2023-11-10 20:04:07 -01:00
|
|
|
./my-distro-ubuntu-20.04-lts/BldHelper.sh
|
|
|
|
./my-distro-ubuntu-22.04-lts/BldHelper.sh
|
|
|
|
./my-distro-ubuntu-23.04/BldHelper.sh
|