summaryrefslogtreecommitdiff
path: root/editors/vscode/files/patch-src_paths.js
diff options
context:
space:
mode:
authorHiroki Tagato <tagattie@FreeBSD.org>2021-03-14 05:04:16 +0000
committerHiroki Tagato <tagattie@FreeBSD.org>2021-03-14 05:04:16 +0000
commit131bc65a22ef24d6a44775ec2a1e055865f1d205 (patch)
tree46dabbb5a1279ce6733bd91816484d2ae040374c /editors/vscode/files/patch-src_paths.js
parentgames/libretro-beetle_pce_fast: Update to 20210214 (diff)
Update to 1.54.2
Changelog: https://code.visualstudio.com/updates/v1_54
Diffstat (limited to 'editors/vscode/files/patch-src_paths.js')
-rw-r--r--editors/vscode/files/patch-src_paths.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/editors/vscode/files/patch-src_paths.js b/editors/vscode/files/patch-src_paths.js
deleted file mode 100644
index e139c632a8e8..000000000000
--- a/editors/vscode/files/patch-src_paths.js
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/paths.js.orig 2020-12-16 14:57:12 UTC
-+++ src/paths.js
-@@ -34,7 +34,7 @@ function getDefaultUserDataPath() {
- case 'darwin':
- appDataPath = path.join(os.homedir(), 'Library', 'Application Support');
- break;
-- case 'linux':
-+ case 'linux': case 'freebsd':
- appDataPath = process.env['XDG_CONFIG_HOME'] || path.join(os.homedir(), '.config');
- break;
- default: