We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c09edd commit dc0e3a2Copy full SHA for dc0e3a2
src/vim.ts
@@ -90,10 +90,10 @@ async function installVimAssetOnWindows(file: string, url: string) {
90
const assetFile = path.join(dlDir, file);
91
92
try {
93
- core.debug(`Downloading ${url} to ${dlDir}`);
+ core.debug(`Downloading asset at ${url} to ${dlDir}`);
94
const response = await fetch(url);
95
if (!response.ok) {
96
- throw new Error(`Downloading asset from ${url} failed: ${response.statusText}`);
+ throw new Error(`Downloading asset failed: ${response.statusText}`);
97
}
98
const buffer = await response.buffer();
99
await fs.writeFile(assetFile, buffer, { encoding: null });
0 commit comments