Signed-off-by: 35C4n0r <work.jaykumar@gmail.com>
This commit is contained in:
35C4n0r 2025-12-14 12:23:27 +00:00
parent 090fa7dd1d
commit aaf2c4e0dd

View File

@ -3,7 +3,8 @@
# Set strict error handling AFTER sourcing bashrc to avoid unbound variable errors from user dotfiles
set -euo pipefail
export PATH="$HOME/.local/bin:$PATH"
# Redirect all script output to log file
exec >> "$HOME/start.log" 2>&1
command_exists() {
command -v "$1" > /dev/null 2>&1