Fix typing error.
This commit is contained in:
parent
0458f66c96
commit
69790ec138
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ elif [ -f "$destination" ]; then
|
||||||
# Currently not worth the effor to change it, stat is not defined by POSIX
|
# Currently not worth the effor to change it, stat is not defined by POSIX
|
||||||
# and different OSes has different implementations for it.
|
# and different OSes has different implementations for it.
|
||||||
# shellcheck disable=SC2012
|
# shellcheck disable=SC2012
|
||||||
ink_count=$(ls -l "$destination" | awk '{ print $2 }')
|
link_count=$(ls -l "$destination" | awk '{ print $2 }')
|
||||||
if [ "$link_count" -gt 1 ]; then
|
if [ "$link_count" -gt 1 ]; then
|
||||||
echo hardlink
|
echo hardlink
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue