ports: Fix config.sub downloading

This commit is contained in:
Bananymous 2025-08-07 01:23:32 +03:00
parent a84c348045
commit 2980173c8e
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ config_sub_update() {
config_sub_path="$BANAN_PORT_DIR/config.sub" config_sub_path="$BANAN_PORT_DIR/config.sub"
if [ $(find $config_sub_path -mtime +1) ]; then if [ ! -f "$config_sub_path" ] || [ $(find "$config_sub_path" -mtime +1) ]; then
wget -O "$config_sub_path" 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD' wget -O "$config_sub_path" 'https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD'
fi fi