mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
use single quote for first check
This commit is contained in:
parent
4011a18ff9
commit
b3242230e8
2
.github/workflows/clang-format.yml
vendored
2
.github/workflows/clang-format.yml
vendored
@ -26,7 +26,7 @@ jobs:
|
||||
run: |
|
||||
for fname in $(find . -type f -name '*.cpp' -o -name '*.h')
|
||||
do
|
||||
new_fname="$(echo -e \"${fname}\" | tr ' ' '_')"
|
||||
new_fname="$(echo -e '${fname}' | tr ' ' '_')"
|
||||
new_fname="$(echo -e ${new_fname} | tr 'A-Z' 'a-z')"
|
||||
if [ $fname != $new_fname ]
|
||||
then
|
||||
|
Loading…
Reference in New Issue
Block a user