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 @@ -12,7 +12,7 @@ async function run(): Promise<void> {
12
12
13
13
switch ( process . platform ) {
14
14
case 'win32' : {
15
- let toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _windows_amd64.zip`
15
+ const toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _windows_amd64.zip`
16
16
const downloadPath = await tc . downloadTool ( toolUrl )
17
17
const extPath = await tc . extractZip ( downloadPath )
18
18
const cachedPath = await tc . cacheDir ( extPath , 'sqlc' , version )
@@ -21,7 +21,7 @@ async function run(): Promise<void> {
21
21
}
22
22
23
23
case 'darwin' : {
24
- let toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _darwin_amd64.zip`
24
+ const toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _darwin_amd64.zip`
25
25
const downloadPath = await tc . downloadTool ( toolUrl )
26
26
const extPath = await tc . extractZip ( downloadPath )
27
27
const cachedPath = await tc . cacheDir ( extPath , 'sqlc' , version )
@@ -30,7 +30,7 @@ async function run(): Promise<void> {
30
30
}
31
31
32
32
case 'linux' : {
33
- let toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _linux_amd64.zip`
33
+ const toolUrl = `https://downloads.sqlc.dev/sqlc_${ version } _linux_amd64.zip`
34
34
const downloadPath = await tc . downloadTool ( toolUrl )
35
35
const extPath = await tc . extractTar ( downloadPath )
36
36
const cachedPath = await tc . cacheDir ( extPath , 'sqlc' , version )
You can’t perform that action at this time.
0 commit comments