1
0

fix: ensure setup scripts are executed with bash for compatibility

This commit is contained in:
2025-08-04 20:59:04 -05:00
parent b08c9acb29
commit a245bebffb

View File

@@ -32,7 +32,7 @@ if [ -d "$DOTFILES_DIR/scripts" ]; then
script_name=$(basename "$script")
log_info "Running $script_name..."
if "$script" "$DOTFILES_DIR"; then
if bash "$script" "$DOTFILES_DIR"; then
log_success "$script_name completed"
else
log_error "$script_name failed"