Skip to content

Commit ebe3b86

Browse files
committed
fix(workflows): What to patch
1 parent deb9486 commit ebe3b86

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/builder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,8 @@ jobs:
8484
shell: bash
8585
run: |
8686
sudo apt update
87-
sudo apt install -y libreadline-dev libboost-all-dev patchelf
87+
sudo apt install -y libreadline-dev libboost-all-dev
8888
bash ./setup.sh
89-
patchelf --set-rpath '$ORIGIN' build/package/addons/swiftly/bin/linuxsteamrt64/swiftly.so
9089
9190
- name: Build - Windows
9291
if: matrix.os == 'windows-latest'
@@ -260,8 +259,9 @@ jobs:
260259
shell: bash
261260
run: |
262261
sudo apt update
263-
sudo apt install -y libreadline-dev libboost-all-dev unzip
262+
sudo apt install -y libreadline-dev libboost-all-dev unzip patchelf
264263
bash ./setup.sh
264+
patchelf --set-rpath '$ORIGIN' build/package/addons/swiftly/bin/linuxsteamrt64/swiftly.so
265265
266266
echo "[Builder] Setting up default plugins"
267267
cp -r build/package build/package2

generators/docsgen/minifier.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
const { readFileSync, writeFileSync } = require("fs")
22

33
const file = "sdk.json"
4-
writeFileSync(file, JSON.stringify(JSON.stringify(JSON.parse(readFileSync(file)))))
4+
writeFileSync(file, JSON.stringify(JSON.parse(readFileSync(file))))

0 commit comments

Comments
 (0)