a73cae2fd8
code-server enables running Visual Studio Code on a remote system and accessing it through a web browser. It provides a familiar development environment without requiring a local VS Code installation. WWW: https://github.com/coder/code-server Sponsored by: Netzkommune GmbH
12 lines
644 B
TypeScript
12 lines
644 B
TypeScript
--- lib/vscode/build/gulpfile.extensions.ts.orig
|
|
+++ lib/vscode/build/gulpfile.extensions.ts
|
|
@@ -264,7 +264,7 @@
|
|
/**
|
|
* brings in the marketplace extensions for the build
|
|
*/
|
|
-const bundleMarketplaceExtensionsBuildTask = task.define('bundle-marketplace-extensions-build', () => ext.packageMarketplaceExtensionsStream(false).pipe(gulp.dest('.build')));
|
|
+const bundleMarketplaceExtensionsBuildTask = task.define('bundle-marketplace-extensions-build', () => process.platform === 'freebsd' ? es.readArray([]) : ext.packageMarketplaceExtensionsStream(false).pipe(gulp.dest('.build')));
|
|
|
|
/**
|
|
* Compiles the non-native extensions for the build
|