Skip to content

Commit

Permalink
fix: don't fail when removing regolith.list file
Browse files Browse the repository at this point in the history
  • Loading branch information
khos2ow committed Feb 3, 2025
1 parent e0677a1 commit 0a7554a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/scripts/ext-debian.sh
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ archive_cleanup_scripts() {
# Remove regolith repo from build system apt config
if [ -f "/etc/apt/sources.list.d/regolith.list" ]; then
echo "Deleting /etc/apt/sources.list.d/regolith.list file"
sudo rm -f /etc/apt/sources.list.d/regolith.list
sudo rm -f /etc/apt/sources.list.d/regolith.list || true
fi
}

Expand Down

0 comments on commit 0a7554a

Please sign in to comment.