File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ async function main(){
1717 const useHaskell = core . getInput ( 'use-haskell' ) . toLowerCase ( ) === 'true' ;
1818 console . log ( `use-haskell: ${ useHaskell } ` ) ;
1919
20- fpmVersion = core . getInput ( 'fpm-version' ) ;
20+ var fpmVersion = core . getInput ( 'fpm-version' ) ;
2121 console . log ( `fpm-version: ${ fpmVersion } ` ) ;
2222
2323 const fpmRepo = core . getInput ( 'fpm-repository' ) ;
@@ -47,7 +47,7 @@ async function main(){
4747 const filename = getFPMFilename ( useHaskell , fpmVersion , process . platform ) ;
4848
4949 console . log ( `This platform is ${ process . platform } ` ) ;
50- console . log ( `Fetching fpm from ${ fetchPath } ${ filename } ` )
50+ console . log ( `Fetching fpm from ${ fetchPath } ${ filename } ` ) ;
5151
5252 // Download release
5353 var fpmPath ;
@@ -104,7 +104,7 @@ async function main(){
104104//
105105function getFPMFilename ( useHaskell , fpmVersion , platform ) {
106106
107- filename = 'fpm-' ;
107+ var filename = 'fpm-' ;
108108
109109 if ( useHaskell ) {
110110 filename += 'haskell-' ;
You can’t perform that action at this time.
0 commit comments