From 59eadf3d25b0f53e7570f98f1801737af642f328 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 9 Sep 2022 11:35:47 +0900 Subject: Ignore EACCES on Windows --- tool/ln_sr.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tool/ln_sr.rb') diff --git a/tool/ln_sr.rb b/tool/ln_sr.rb index 6ab412edde..81fd803355 100755 --- a/tool/ln_sr.rb +++ b/tool/ln_sr.rb @@ -116,7 +116,7 @@ end if File.respond_to?(:symlink) begin ln_sr(src, dest, verbose: true, target_directory: target_directory, force: force, noop: noop) - rescue NotImplementedError, Errno::EPERM + rescue NotImplementedError, Errno::EPERM, Errno::EACCES else exit end -- cgit v1.2.3