Skip to content
Snippets Groups Projects
Commit 6e855568 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Fix general management command.

Closes #2.
parent fc1a1c0b
No related branches found
No related tags found
No related merge requests found
Pipeline #80094 failed
...@@ -16,7 +16,7 @@ class Command(BaseYarnCommand): ...@@ -16,7 +16,7 @@ class Command(BaseYarnCommand):
if self._is_single_command('install', args): if self._is_single_command('install', args):
self._install([]) self._install([])
else: else:
yarn_adapter.call_bower(args) yarn_adapter.call_yarn(args)
def _is_single_command(self, name, args): def _is_single_command(self, name, args):
return len(args) == 1 and args[0] == name return len(args) == 1 and args[0] == name
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment