mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use -n to ln(1) which is compatible with GNU ln(1).
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
parent
e06f502c9e
commit
7359fe7af4
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ fi
|
|||
# the remaining arguments are assumed to be files/dirs only.
|
||||
if [ -n "${linkmode}" ]; then
|
||||
if [ "${linkmode}" = "symbolic" ]; then
|
||||
ln -fsh "$@"
|
||||
ln -fsn "$@"
|
||||
else
|
||||
ln -f "$@"
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue