From a213dbf31f8abed90ba7e5f42cf0fb62ba213cbc Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 12 Jun 2025 00:33:50 +0300 Subject: [PATCH] fix(lint): cr comment --- local/dfm/cmd/install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/local/dfm/cmd/install.sh b/local/dfm/cmd/install.sh index eae2119..9703610 100644 --- a/local/dfm/cmd/install.sh +++ b/local/dfm/cmd/install.sh @@ -6,6 +6,10 @@ set -euo pipefail : "${BREWFILE:=$DOTFILES/config/homebrew/Brewfile}" : "${TEMP_DIR:=$(mktemp -d)}" : "${DFM_MAX_RETRIES:=3}" + +# Remove temp folder on exit +trap 'rm -rf "$TEMP_DIR"' EXIT + # Installation functions for dfm, the dotfile manager # # @author Ismo Vuorinen @@ -15,7 +19,7 @@ set -euo pipefail # # Description: # Orchestrates the installation process for the dotfile manager by sequentially invoking -# the installation routines for fonts, Homebrew, and Rust (cargo). It logs the start of the +# the installation routines for fonts, Homebrew, and Rust (cargo). It logs the start of the # overall installation process before calling each respective function. # # Globals: