mirror of
https://git.savannah.gnu.org/git/gnuboot.git
synced 2025-01-04 15:27:39 +01:00
Denis 'GNUtoo' Carikli
c7e28dc660
The various scripts present in GNU Boot are very fragile, so it's a good idea to have a pristine GNU Boot source code for making releases. The issue is that 'git clean -dfx' doesn't remove existing git repositories like coreboot/ grub/ etc, so we need additional code to take care of that. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> Acked-by: Adrien 'neox' Bourmault <neox@gnu.org>
27 lines
951 B
Bash
Executable file
27 lines
951 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.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 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 <https://www.gnu.org/licenses/>.
|
|
|
|
# shellcheck source=resources/scripts/tasks/distclean.sh
|
|
. "$(dirname "$0")"/../../scripts/tasks/distclean.sh
|
|
|
|
distclean_u_boot_libre()
|
|
{
|
|
rm -rf release
|
|
}
|
|
|
|
# shellcheck disable=SC2068
|
|
distclean_main distclean_u_boot_libre $@
|