rename T.concat to T.csconcat to avoid case-insensitive conflict (#64)

On case-insensitive file systems (i.e.: macOS), T.concat and
t.concat are the same file, so these conflicted. This commit
renames T.concat to avoid the conflict.
This commit is contained in:
Martijn Dekker 2020-01-10 11:13:26 +01:00 committed by Arnold Robbins
parent 944989bf68
commit 2976507cc1
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
echo T.concat: test constant string concatentation
echo T.csconcat: test constant string concatentation
awk=${awk-../a.out}
@ -26,4 +26,4 @@ hello world
hello world
EOF
diff foo1 foo2 || echo 'BAD: T.concat (1)'
diff foo1 foo2 || echo 'BAD: T.csconcat (1)'