Skip to content

Commit 60c1f09

Browse files
committed
docs: fix formatting + doctoc
1 parent 5c508cb commit 60c1f09

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Code v99.99.999
1919
### Security
2020
2121
-->
22+
2223
## [4.13.0](https://github.com/coder/code-server/releases/tag/v4.13.0) - 2023-05-19
2324

2425
Code v1.78.2

ci/build/build-vscode.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ EOF
112112
pushd lib/vscode-reh-web-linux-x64
113113
# Make sure Code took the version we set in the environment variable. Not
114114
# having a version will break display languages.
115-
if ! jq -e .commit product.json ; then
115+
if ! jq -e .commit product.json; then
116116
echo "'commit' is missing from product.json"
117117
exit 1
118118
fi

docs/termux.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- [Upgrade](#upgrade)
99
- [Known Issues](#known-issues)
1010
- [Git won't work in `/sdcard`](#git-wont-work-in-sdcard)
11+
- [Many extensions including language packs fail to install](#many-extensions-including-language-packs-fail-to-install)
1112
- [Extra](#extra)
1213
- [Create a new user](#create-a-new-user)
1314
- [Install Go](#install-go)
@@ -103,7 +104,11 @@ Create a JS script that patches `process.platform`:
103104

104105
```js
105106
// android-as-linux.js
106-
Object.defineProperty(process, 'platform', { get() { return 'linux' }});
107+
Object.defineProperty(process, "platform", {
108+
get() {
109+
return "linux"
110+
},
111+
})
107112
```
108113

109114
Then use Node's `--require` option to make sure it is loaded before `code-server` starts:
@@ -112,7 +117,7 @@ Then use Node's `--require` option to make sure it is loaded before `code-server
112117
NODE_OPTIONS="--require /path/to/android-as-linux.js" code-server
113118
```
114119

115-
⚠️ Note that Android and Linux are not 100% compatible, so use these workarounds at your own risk. Extensions that have native dependencies other than Node or that directly interact with the OS might cause issues.
120+
⚠️ Note that Android and Linux are not 100% compatible, so use these workarounds at your own risk. Extensions that have native dependencies other than Node or that directly interact with the OS might cause issues.
116121

117122
## Extra
118123

0 commit comments

Comments
 (0)