From 7d93ac1f6a3f90b3ed90b4d382646a8090b6453b Mon Sep 17 00:00:00 2001 From: Ryan Delaney Date: Wed, 29 Jul 2015 18:05:55 -0700 Subject: [PATCH] Fixed a bug where test files for lines with a leading asterisk in LS_COLORS would not have the 'test.' prefix --- buildsuite | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildsuite b/buildsuite index bfc5dbf..9510b58 100755 --- a/buildsuite +++ b/buildsuite @@ -118,7 +118,7 @@ chmod 0777 WORLDWRITEABLE # Supported extensions while read line; do if [[ ! -f test"$line" ]]; then - line="${line//\*/}" + line="${line//\*/.}" if [[ "${line:0:1}" == "." ]]; then touch ./DIRECTORY/test"$line" else