Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion poetry/console/commands/plugin/add.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def handle(self) -> int:
plugins = self.argument("plugins")

# Plugins should be installed in the system env to be globally available
system_env = EnvManager.get_system_env()
system_env = EnvManager.get_system_env(naive=True)

env_dir = Path(
os.getenv("POETRY_HOME") if os.getenv("POETRY_HOME") else system_env.path
Expand Down
2 changes: 1 addition & 1 deletion poetry/console/commands/plugin/remove.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def handle(self) -> int:

plugins = self.argument("plugins")

system_env = EnvManager.get_system_env()
system_env = EnvManager.get_system_env(naive=True)
env_dir = Path(
os.getenv("POETRY_HOME") if os.getenv("POETRY_HOME") else system_env.path
)
Expand Down
2 changes: 1 addition & 1 deletion poetry/console/commands/plugin/show.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def handle(self) -> int:
+ PluginManager("plugin").get_plugin_entry_points()
)

system_env = EnvManager.get_system_env()
system_env = EnvManager.get_system_env(naive=True)
installed_repository = InstalledRepository.load(
system_env, with_dependencies=True
)
Expand Down
Loading