From 7e59326d1ca3a496b1e8402c3478b47164635fc7 Mon Sep 17 00:00:00 2001 From: Fernando Schauenburg Date: Sat, 16 Nov 2019 09:32:29 +0000 Subject: [PATCH] Prevent bash warning when no completions are installed --- roles/bash/files/profile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/bash/files/profile b/roles/bash/files/profile index 44588b9..8408ba7 100644 --- a/roles/bash/files/profile +++ b/roles/bash/files/profile @@ -360,7 +360,7 @@ stty -ixon # disable ctrl-s and ctrl-q _update_colors "${BACKGROUND:-dark}" # Enable available completion helpers -while read -r d; do [ -d "$d" ] && for f in "$d"/*; do . "$f"; done; done <