mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 12:47:14 +00:00
* 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
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" "$@"
|