Skip to content

Commit

Permalink
drop file detection because they are broken links
Browse files Browse the repository at this point in the history
  • Loading branch information
oklopfer committed Nov 30, 2023
1 parent 965d71c commit 1dff6ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/rhino-setup-bin/rhino-setup-bin.pacscript
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ post_install() {

post_remove() {
for i in "${homedir}" "/etc/skel"; do
if [[ -f "${i}/.config/autostart/rhino-setup.desktop" ]]; then
if [[ "${i}/.config/autostart/rhino-setup.desktop" ]]; then
sudo rm -f "${i}/.config/autostart/rhino-setup.desktop"
fi
done
Expand Down
2 changes: 1 addition & 1 deletion packages/rhino-setup-git/rhino-setup-git.pacscript
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ post_install() {

post_remove() {
for i in "${homedir}" "/etc/skel"; do
if [[ -f "${i}/.config/autostart/rhino-setup.desktop" ]]; then
if [[ "${i}/.config/autostart/rhino-setup.desktop" ]]; then
sudo rm -f "${i}/.config/autostart/rhino-setup.desktop"
fi
done
Expand Down

0 comments on commit 1dff6ce

Please sign in to comment.