mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-17 22:00:59 +01:00
28ebd9176f
* chore: bump electron@29.4.0 * chore: remove io_uring workaround * chore: bump distro * chore: update dialog result for canceled save dialogs Refs https://github.com/electron/electron/commit/fe01ed750ad982e2d67e5be631171399e8428841 * 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
17 lines
393 B
Bash
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" "$@"
|