File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -183,7 +183,11 @@ CURL := curl --silent --show-error --fail --location --retry 10 --retry-connrefu
183183# can run the "link $(DOWNLOAD_DIR)/tools/xxx@$(XXX_VERSION)_$(HOST_OS)_$(HOST_ARCH)
184184# to $(bin_dir)/tools/xxx" operation simultaneously without issues (both
185185# will perform the action and the second time the link will be overwritten).
186- LN := ln -fs
186+ #
187+ # -s = Create a symbolic link
188+ # -f = Force the creation of the link (replace existing links)
189+ # -n = If destination already exists, replace it, don't use it as a directory to create a new link inside
190+ LN := ln -fsn
187191
188192upper_map := a:A b:B c:C d:D e:E f:F g:G h:H i:I j:J k:K l:L m:M n:N o:O p:P q:Q r:R s:S t:T u:U v:V w:W x:X y:Y z:Z
189193uc = $(strip \
You can’t perform that action at this time.
0 commit comments