aboutsummaryrefslogtreecommitdiff
path: root/utils/inst
diff options
context:
space:
mode:
Diffstat (limited to 'utils/inst')
-rw-r--r--utils/inst3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/inst b/utils/inst
index 34b2e87..e23b8de 100644
--- a/utils/inst
+++ b/utils/inst
@@ -5,7 +5,8 @@
# First argument is name (take care not to use special characters for regulard
# expression) and second argument is a question
ask() {
- grep -q "^$1$" ".ignore-$(hostname)" && return 1
+ local ignore_file=".ignore-$(hostname)"
+ [ -f "$ignore_file" ] && grep -q "^$1$" "$ignore_file" && return 1
if $FORCE; then
echo "\e[1;34m$2\e[0m"
# Fall trough with 0 exit (always yes)