From 88f2a1e34b3dafd744d1b53f52ae09def234930e Mon Sep 17 00:00:00 2001 From: Denis 'GNUtoo' Carikli Date: Fri, 29 Nov 2024 20:14:29 +0100 Subject: [PATCH] packages: roms: release: unify whitespaces. Before resources/packages/roms/release contained a mix of spaces and tabs. This unify to spaces as there are less tabs than spaces. This should contain no code changes. Signed-off-by: Denis 'GNUtoo' Carikli Acked-by: Adrien 'neox' Bourmault --- resources/packages/roms/release | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/resources/packages/roms/release b/resources/packages/roms/release index af0cf69..ce15abc 100755 --- a/resources/packages/roms/release +++ b/resources/packages/roms/release @@ -3,7 +3,7 @@ # # helper script: generate release archive (ROM images) # -# Copyright (C) 2020,2021 Leah Rowe +# Copyright (C) 2020,2021 Leah Rowe # # 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 @@ -29,11 +29,11 @@ projectname="$(cat projectname)" version="version-unknown" if [ -f version ]; then - version="$(cat version)" + version="$(cat version)" fi versiondate="version-date-unknown" if [ -f versiondate ]; then - versiondate="$(cat versiondate)" + versiondate="$(cat versiondate)" fi if [ ! -d "bin/" ]; then @@ -57,14 +57,13 @@ printf "Building ROM image archives for version %s\n" "${version}" fi printf "Generating release/roms/%s-%s_%s.tar.xz\n" "${projectname}" "${version}" "${target##*/}" - printf "%s\n" "${version}" > "${target}/version" - printf "%s\n" "${versiondate}" > "${target}/versiondate" - printf "%s\n" "${projectname}" > "${target}/projectname" - rm -f ../release/roms/"${projectname}"-"${version}"_"${target##*/}".tar - tar -cf ../release/roms/"${projectname}"-"${version}"_"${target##*/}".tar "${target}/" + printf "%s\n" "${version}" > "${target}/version" + printf "%s\n" "${versiondate}" > "${target}/versiondate" + printf "%s\n" "${projectname}" > "${target}/projectname" + rm -f ../release/roms/"${projectname}"-"${version}"_"${target##*/}".tar + tar -cf ../release/roms/"${projectname}"-"${version}"_"${target##*/}".tar "${target}/" xz -vv -9e -f ../release/roms/"${projectname}"-"${version}"_"${target##*/}".tar done ) printf "\nROM image release archives available at release/roms/\n\n" -