fix: destroy attributes dir
Build Container Image / build_latest_amd64 (push) Successful in 41s Details
Build Container Image / build_latest_i386 (push) Successful in 41s Details
Build Container Image / push_latest_amd64 (push) Successful in 1m12s Details
Build Container Image / build_latest (push) Successful in 1m31s Details
Build Container Image / push_latest_i386 (push) Successful in 1m9s Details
Build Container Image / push_latest (push) Successful in 1m46s Details
Build Container Image / update_readme (push) Successful in 9s Details

This commit is contained in:
Daniel Wolf 2024-04-01 09:42:23 -04:00
parent 30715460e9
commit 7da0b59a40
Signed by: nephatrine
GPG Key ID: 59D70EC2E4AAB4D0
1 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#!/bin/bash
# SPDX-FileCopyrightText: 2023 Daniel Wolf <nephatrine@gmail.com>
# SPDX-FileCopyrightText: 2023 - 2024 Daniel Wolf <nephatrine@gmail.com>
#
# SPDX-License-Identifier: ISC
@ -379,4 +379,8 @@ fi
find ${REPO_SYS} -xtype l | xargs ls -l | grep ' /boot/' | awk -v sysroot=${REPO_SYS}/ '{print "ln -sf " sysroot $11 " " $9}' | /bin/sh
find ${REPO_SYS} -xtype l | xargs ls -l | grep ' /system/' | awk -v sysroot=${REPO_SYS}/boot/ '{print "ln -sf " sysroot $11 " " $9}' | /bin/sh
if [[ -e /opt/haiku/attributes ]]; then
rm -rf /opt/haiku/attributes
fi
exit 0