Wojtek Mach
2024-09-25 13:25:31 +02:00
parent 074443e9dc
commit d73068ed6a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10040,7 +10040,7 @@ async function install(toolName, opts) {
const bindir = path.join(cachePath, 'bin')
const oldPath = path.join(cachePath, 'rebar3')
const newPath = path.join(bindir, 'rebar3')
fs.mkdirSync(bindir)
fs.mkdirSync(bindir, { recursive: true })
fs.renameSync(oldPath, newPath)
fs.chmodSync(newPath, 0o755)
},
+1 -1
View File
@@ -940,7 +940,7 @@ async function install(toolName, opts) {
const bindir = path.join(cachePath, 'bin')
const oldPath = path.join(cachePath, 'rebar3')
const newPath = path.join(bindir, 'rebar3')
fs.mkdirSync(bindir)
fs.mkdirSync(bindir, { recursive: true })
fs.renameSync(oldPath, newPath)
fs.chmodSync(newPath, 0o755)
},