Files
vscode/resources/server/bin/code-server-linux.sh
Robo 28ebd9176f chore: bump electron@29.4.0 (#213050)
* chore: bump electron@29.4.0

* chore: remove io_uring workaround

* chore: bump distro

* chore: update dialog result for canceled save dialogs

Refs fe01ed750a

* chore: add back io_uring workaround for remote oss tests

* chore: update nodejs v20.9.0 build

* chore: add back io_uring workaround for remote tests
2024-05-20 08:31:44 -07:00

17 lines
393 B
Bash

#!/usr/bin/env sh
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
case "$1" in
--inspect*) INSPECT="$1"; shift;;
esac
ROOT="$(dirname "$(dirname "$(readlink -f "$0")")")"
# workaround for https://github.com/microsoft/vscode/issues/212678
# Remove this once we update to Node.js >= 20.11.x
export UV_USE_IO_URING=0
"$ROOT/node" ${INSPECT:-} "$ROOT/out/server-main.js" "$@"