Skip to content

Commit cffde92

Browse files
committed
fixup: tar.exe
1 parent 43fe947 commit cffde92

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.github/workflows/desktop-e2e.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ jobs:
166166
uses: arduino/setup-protoc@v3
167167
with:
168168
repo-token: ${{ secrets.GITHUB_TOKEN }}
169-
- uses: actions/setup-node@v3
169+
- uses: actions/setup-node@v4
170170
with:
171171
token: ${{ secrets.GITHUB_TOKEN }}
172172
node-version: 18
@@ -242,7 +242,7 @@ jobs:
242242
uses: arduino/setup-protoc@v3
243243
with:
244244
repo-token: ${{ secrets.GITHUB_TOKEN }}
245-
- uses: actions/setup-node@v3
245+
- uses: actions/setup-node@v4
246246
with:
247247
token: ${{ secrets.GITHUB_TOKEN }}
248248
node-version: 18

.github/workflows/frontend.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
prop_path: 'volta'
3535

3636
- name: Setup node
37-
uses: actions/setup-node@v3
37+
uses: actions/setup-node@v4
3838
with:
3939
node-version: ${{ steps.volta.outputs.node }}
4040
cache: 'npm'

.github/workflows/translations.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
prop_path: 'volta'
2525

2626
- name: Setup node
27-
uses: actions/setup-node@v3
27+
uses: actions/setup-node@v4
2828
with:
2929
node-version: ${{ steps.volta.outputs.node }}
3030
cache: 'npm'

gui/standalone-tests.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ async function main() {
2020
process.exit(code);
2121
}
2222

23+
function getTarBin() {
24+
if (process.platform === 'win32') {
25+
return 'tar.exe';
26+
} else {
27+
return 'tar';
28+
}
29+
}
30+
2331
function extract() {
2432
// Remove old directory if already existing and create new clean one
2533
removeTmpDir();
@@ -31,7 +39,7 @@ function extract() {
3139

3240
// Untar assets
3341
const args = ['-xzf', path.join(tmpDir, 'assets.tar.gz')];
34-
child_process.spawnSync('tar', args, { cwd: tmpDir });
42+
child_process.spawnSync(getTarBin(), args, { cwd: tmpDir });
3543
}
3644

3745
function getNodeBin() {

0 commit comments

Comments
 (0)