mirror of
https://github.com/DeLaGuardo/setup-clojure.git
synced 2024-12-28 17:35:24 +08:00
fix typo
This commit is contained in:
parent
22efa1724f
commit
b919848cd5
2
dist/index.js
vendored
2
dist/index.js
vendored
@ -3706,7 +3706,7 @@ function installClojureToolsDeps(installScript, destinationFolder) {
|
||||
.readdirSync(sourceDir)
|
||||
.filter(f => f.endsWith('jar'))
|
||||
.map((f) => __awaiter(this, void 0, void 0, function* () {
|
||||
core.info(`Copy jar: #{f}`);
|
||||
core.info(`Copy jar: ${f}`);
|
||||
yield io.mv(path.join(sourceDir, f), clojureLibexecDir);
|
||||
})));
|
||||
yield readWriteAsync(path.join(sourceDir, 'clojure'), '"$CLOJURE_INSTALL_DIR"');
|
||||
|
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
@ -81,7 +81,7 @@ async function installClojureToolsDeps(
|
||||
.filter(f => f.endsWith('jar'))
|
||||
.map(
|
||||
async (f): Promise<void> => {
|
||||
core.info(`Copy jar: #{f}`)
|
||||
core.info(`Copy jar: ${f}`)
|
||||
await io.mv(path.join(sourceDir, f), clojureLibexecDir)
|
||||
}
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user