This commit is contained in:
Kirill Chernyshov 2020-09-23 16:19:13 +02:00
parent 22efa1724f
commit b919848cd5
No known key found for this signature in database
GPG Key ID: 425B3AB78FBCFBDB
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -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

File diff suppressed because one or more lines are too long

View File

@ -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)
}
)