We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bea5cc commit 91e1086Copy full SHA for 91e1086
.github/workflows/create-bcr-entry.mjs
@@ -6,6 +6,7 @@ import {
6
copyFileSync,
7
writeFileSync,
8
appendFileSync,
9
+ readdirSync,
10
} from "fs";
11
import https from "https";
12
import { resolve } from "path";
@@ -156,7 +157,10 @@ async function stampSourceFile(
156
157
sourceJson.url.lastIndexOf("/") + 1
158
);
159
160
+ console.log(`Downloading archive ${sourceJson.url}`);
161
await download(sourceJson.url, filename);
162
+ console.log("Finished downloading");
163
+ console.log(readdirSync("."));
164
165
const hash = crypto.createHash("sha256");
166
hash.update(readFileSync(filename));
0 commit comments