summaryrefslogtreecommitdiffstats
path: root/src/shell_install/bash.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/shell_install/bash.rs')
-rw-r--r--src/shell_install/bash.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shell_install/bash.rs b/src/shell_install/bash.rs
index d83853b..1ebae33 100644
--- a/src/shell_install/bash.rs
+++ b/src/shell_install/bash.rs
@@ -43,11 +43,11 @@ function br {
cmd_file=$(mktemp)
if broot --outcmd "$cmd_file" "$@"; then
cmd=$(<"$cmd_file")
- rm -f "$cmd_file"
+ command rm -f "$cmd_file"
eval "$cmd"
else
code=$?
- rm -f "$cmd_file"
+ command rm -f "$cmd_file"
return "$code"
fi
}