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 02ab21a commit 8478975Copy full SHA for 8478975
index.js
@@ -44,13 +44,13 @@ async function main(){
44
const filename = getFPMFilename(fpmVersion,process.platform);
45
46
console.log(`This platform is ${process.platform}`);
47
+ console.log(`Fetching fpm from ${fetchPath}${filename}`);
48
49
// Download release
50
var fpmPath;
51
try {
52
- // Try downloading the file without the compiler suffix
53
- console.log(`Fetching fpm from ${fetchPath}${filename}`);
+ // Try downloading the file without the compiler suffix
54
const filename = getFPMFilename(fpmVersion, process.platform);
55
fpmPath = await tc.downloadTool(fetchPath + filename);
56
0 commit comments