22 lines
622 B
Bash
Executable File
22 lines
622 B
Bash
Executable File
#!/bin/bash
|
|
|
|
################################################################################
|
|
# Title: build-all.sh
|
|
# Description: Script to build Peppermint Debian 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 isos sequencialy
|
|
./debian-64/BldHelper.sh
|
|
./debian-32/BldHelper.sh
|
|
./devuan-64/BldHelper.sh
|
|
./devuan-32/BldHelper.sh
|
|
./debian-arm64/BldHelper.sh
|
|
./devuan-arm64/BldHelper.sh
|