Skip to content

Commit

Permalink
fix install scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
honjow committed Dec 9, 2024
1 parent 0fc63ce commit ec1a984
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions all-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ else
fi

for package in ${OWN_PACKAGES_TO_DELETE}; do
rm -f "/own_pkgs/${package}" || true
rm -f /own_pkgs/${package} || true
done

# install own override packages
Expand Down Expand Up @@ -64,7 +64,7 @@ done

# remove AUR packages
for package in ${AUR_PACKAGES_TO_DELETE}; do
rm -f "/extra_pkgs/${package}" || true
rm -f /extra_pkgs/${package} || true
done

# install AUR packages
Expand Down

0 comments on commit ec1a984

Please sign in to comment.