mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-06 22:03:13 +00:00
4d0d2601a6
Adds the necessary patch to fix the remote dev server in the Jetbrains IDEs ( see #153335 ).
18 lines
529 B
Diff
18 lines
529 B
Diff
--- a/plugins/remote-dev-server/bin/launcher.sh
|
|
+++ b/plugins/remote-dev-server/bin/launcher.sh
|
|
@@ -327,6 +327,8 @@
|
|
REMOTE_DEV_SERVER_USE_SELF_CONTAINED_LIBS=1
|
|
fi
|
|
|
|
+REMOTE_DEV_SERVER_USE_SELF_CONTAINED_LIBS=0
|
|
+
|
|
if [ $REMOTE_DEV_SERVER_USE_SELF_CONTAINED_LIBS -eq 1 ]; then
|
|
SELFCONTAINED_LIBS="$REMOTE_DEV_SERVER_DIR/selfcontained/lib"
|
|
if [ ! -d "$SELFCONTAINED_LIBS" ]; then
|
|
@@ -568,3 +570,5 @@
|
|
"$LAUNCHER" "$STARTER_COMMAND" "$PROJECT_PATH" "$@"
|
|
;;
|
|
esac
|
|
+
|
|
+unset REMOTE_DEV_SERVER_USE_SELF_CONTAINED_LIBS
|