mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-12 23:15:52 +08:00
use single quote for first check
This commit is contained in:
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
|
||||
|
||||
Reference in New Issue
Block a user