diff options
Diffstat (limited to 'resources/scripts/build')
-rwxr-xr-x | resources/scripts/build/release/roms | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/resources/scripts/build/release/roms b/resources/scripts/build/release/roms index 81949130..06f56c85 100755 --- a/resources/scripts/build/release/roms +++ b/resources/scripts/build/release/roms @@ -5,18 +5,18 @@ # # Copyright (C) 2020,2021,2022,2023 Leah Rowe <info@minifree.org> # -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. # -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. # # This script assumes that the working directory is the root @@ -42,13 +42,13 @@ if [ ! -d "bin/" ]; then fi [ ! -d "release/" ] && \ - mkdir -p release/ + mkdir -p release/ [ ! -d "release/${version}/" ] && \ - mkdir -p "release/${version}/" + mkdir -p "release/${version}/" [ -d "release/${version}/roms/" ] && \ - rm -Rf "release/${version}/roms/" + rm -Rf "release/${version}/roms/" [ ! -d "release/${version}/roms/" ] && \ - mkdir -p "release/${version}/roms/" + mkdir -p "release/${version}/roms/" printf "Building ROM image archives for version %s\n" "${version}" @@ -57,7 +57,7 @@ for romdir in bin/*; do echo ${target} if [ ! -d "${romdir}/" ]; then - continue + continue fi CONFIG_HAVE_MRC="y" |