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(){
17
17
const useHaskell = core . getInput ( 'use-haskell' ) . toLowerCase ( ) === 'true' ;
18
18
console . log ( `use-haskell: ${ useHaskell } ` ) ;
19
19
20
- fpmVersion = core . getInput ( 'fpm-version' ) ;
20
+ var fpmVersion = core . getInput ( 'fpm-version' ) ;
21
21
console . log ( `fpm-version: ${ fpmVersion } ` ) ;
22
22
23
23
const fpmRepo = core . getInput ( 'fpm-repository' ) ;
@@ -47,7 +47,7 @@ async function main(){
47
47
const filename = getFPMFilename ( useHaskell , fpmVersion , process . platform ) ;
48
48
49
49
console . log ( `This platform is ${ process . platform } ` ) ;
50
- console . log ( `Fetching fpm from ${ fetchPath } ${ filename } ` )
50
+ console . log ( `Fetching fpm from ${ fetchPath } ${ filename } ` ) ;
51
51
52
52
// Download release
53
53
var fpmPath ;
@@ -104,7 +104,7 @@ async function main(){
104
104
//
105
105
function getFPMFilename ( useHaskell , fpmVersion , platform ) {
106
106
107
- filename = 'fpm-' ;
107
+ var filename = 'fpm-' ;
108
108
109
109
if ( useHaskell ) {
110
110
filename += 'haskell-' ;
You can’t perform that action at this time.
0 commit comments