Skip to content

Commit

Permalink
fix: not showing cplusplus icon
Browse files Browse the repository at this point in the history
  • Loading branch information
luckylooky2 committed Sep 24, 2023
1 parent d02237c commit d121bb7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ c_num=$(find . -type f -name '*[0-9].c' | wc -l | tr -d ' ')
py_num=$(find . -type f -name '*[0-9].py' | wc -l | tr -d ' ')

count_map[${js_num}]="![](https://img.shields.io/badge/Javascript-F7DF1E?style=flat&logo=JavaScript&logoColor=white)"
count_map[${cpp_num}]="![](https://img.shields.io/badge/C++-00599C?style=flat&logo=C++&logoColor=white)"
count_map[${cpp_num}]="![](https://img.shields.io/badge/C++-00599C?style=flat&logo=cplusplus&logoColor=white)"
count_map[${c_num}]="![](https://img.shields.io/badge/C-A8B9CC?style=flat&logo=c&logoColor=white)"
count_map[${py_num}]="![](https://img.shields.io/badge/Python-3776AB?style=flat&logo=python&logoColor=white)"

Expand Down

0 comments on commit d121bb7

Please sign in to comment.