mirror of
https://github.com/DeLaGuardo/setup-clojure.git
synced 2025-01-16 12:13:26 +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)
|
.readdirSync(sourceDir)
|
||||||
.filter(f => f.endsWith('jar'))
|
.filter(f => f.endsWith('jar'))
|
||||||
.map((f) => __awaiter(this, void 0, void 0, function* () {
|
.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 io.mv(path.join(sourceDir, f), clojureLibexecDir);
|
||||||
})));
|
})));
|
||||||
yield readWriteAsync(path.join(sourceDir, 'clojure'), '"$CLOJURE_INSTALL_DIR"');
|
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'))
|
.filter(f => f.endsWith('jar'))
|
||||||
.map(
|
.map(
|
||||||
async (f): Promise<void> => {
|
async (f): Promise<void> => {
|
||||||
core.info(`Copy jar: #{f}`)
|
core.info(`Copy jar: ${f}`)
|
||||||
await io.mv(path.join(sourceDir, f), clojureLibexecDir)
|
await io.mv(path.join(sourceDir, f), clojureLibexecDir)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user