Skip to content

Commit 3c57ff6

Browse files
change chmod to 755
1 parent 4c05ed6 commit 3c57ff6

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/set-up-stackql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ jobs:
2424
uses: ./
2525

2626
- name: Validate Stackql Version
27-
run: sudo stackql --version
27+
run: stackql --version

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6727,7 +6727,7 @@ async function downloadCLI(){
67276727

67286728
pathToCLI = await tc.extractZip(pathToCLIZip);
67296729

6730-
fs.chmodSync(pathToCLI, '755');
6730+
fs.chmodSync(pathToCLI, '777')
67316731

67326732
core.debug(`Stackql CLI path is ${pathToCLI}.`);
67336733

@@ -6742,7 +6742,7 @@ async function downloadCLI(){
67426742
async function setup(){
67436743

67446744
const path = await downloadCLI()
6745-
6745+
67466746
core.addPath(path)
67476747
}
67486748

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async function downloadCLI(){
2525

2626
pathToCLI = await tc.extractZip(pathToCLIZip);
2727

28-
fs.chmodSync(pathToCLI, '755');
28+
fs.chmodSync(pathToCLI, '777')
2929

3030
core.debug(`Stackql CLI path is ${pathToCLI}.`);
3131

@@ -40,7 +40,7 @@ async function downloadCLI(){
4040
async function setup(){
4141

4242
const path = await downloadCLI()
43-
43+
4444
core.addPath(path)
4545
}
4646

0 commit comments

Comments
 (0)