mirror of
https://github.com/trapd00r/LS_COLORS.git
synced 2024-12-22 13:52:12 +01:00
Fixed a bug where test files for lines with a leading asterisk in LS_COLORS would not have the 'test.' prefix
This commit is contained in:
parent
1933106caa
commit
7d93ac1f6a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue