We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebdc250 commit 1565c64Copy full SHA for 1565c64
1 file changed
src/wrappers/x86_64-w64-mingw32.jl
@@ -7,7 +7,9 @@ JLLWrappers.@declare_library_product(libxprs, "xprs.dll")
7
function __init__()
8
JLLWrappers.@generate_init_header()
9
# There's a permission error with the conda binaries
10
- chmod(dirname(dirname(artifact_dir)), 0o755; recursive = true)
+ if (stat(artifact_dir).mode & 0o777) != 0o755
11
+ chmod(artifact_dir, 0o755; recursive = true)
12
+ end
13
JLLWrappers.@init_library_product(
14
libxprs,
15
"Lib\\site-packages\\xpress\\lib\\xprs.dll",
0 commit comments