Skip to content

Commit 68e59a2

Browse files
authored
[fix] : Info message typo
tools/clean.sh : [67&70] Removeing -> Removing
1 parent 00f8d8a commit 68e59a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/clean.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ remove() {
6464
local _list=($(echo "$@")) _file
6565
for _file in "${_list[@]}"; do
6666
if [[ -f ${_file} ]]; then
67-
msg_info "Removeing ${_file}"
67+
msg_info "Removing ${_file}"
6868
rm -f "${_file}"
6969
elif [[ -d ${_file} ]]; then
70-
msg_info "Removeing ${_file}"
70+
msg_info "Removing ${_file}"
7171
rm -rf "${_file}"
7272
fi
7373
done

0 commit comments

Comments
 (0)