Skip to content
Snippets Groups Projects
Commit 64349af7 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

[utils] Fix installation command

parent ff2d259e
No related branches found
No related tags found
1 merge request!194Scheduler
......@@ -1041,9 +1041,11 @@ class Command(BaseCommand):
add_group('Default')
# Sets up the queue and environments
queue, environment = \
setup_environment(arguments['queue_configuration'],
arguments['verbosity'])
setup_environment(arguments['queue_configuration'],
arguments['verbosity'])
from ....backend.models import Environment, Queue
environment = Environment.objects.first()
queue = Queue.objects.first()
# Iterates over projects to install
for project in ['system'] + arguments['project']:
......
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