Add debug output
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Fabian Stamm 2020-10-14 16:34:26 +02:00
parent f3f6f0d7bc
commit 2194bf199e

View File

@ -145,6 +145,7 @@ async function uploadPackage(ctx: ABC.Context) {
const bucketPath = (bucketBase + relative).replace(/@/g, "§"); const bucketPath = (bucketBase + relative).replace(/@/g, "§");
const body = await Deno.readAll(await Deno.open(file.path)); const body = await Deno.readAll(await Deno.open(file.path));
console.log("Put Object", bucketPath);
await bucket.putObject(bucketPath, body, {}); await bucket.putObject(bucketPath, body, {});
} }
console.log("Setting new live version"); console.log("Setting new live version");