Skip to content

Commit

Permalink
Merge pull request #153 from akretion/fix-compatibility-bedrock
Browse files Browse the repository at this point in the history
FIX pass NOGOSU=True for compatibility wirh odoo-bedrock
  • Loading branch information
sebastienbeau authored Oct 7, 2022
2 parents cb888ff + 5dacbf0 commit 88571a3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions docky/cmd/run_open.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def _main(self, *optionnal_command_line):
self.project.display_service_tooltip()
self.project.create_volume()
self._exec('docker-compose', [
'run', '--rm', '--service-ports', '--use-aliases',
'run', '--rm', '--service-ports', '--use-aliases', '-e', 'NOGOSU=True',
self.service] + self.cmd)


Expand All @@ -72,5 +72,4 @@ class DockyOpen(DockyExec):

def _main(self, *optionnal_command_line):
super()._main(*optionnal_command_line)
self._exec('dcpatched', [
'exec', self.service] + self.cmd)
self._exec('dcpatched', ['exec', '-e', 'NOGOSU=True', self.service] + self.cmd)

0 comments on commit 88571a3

Please sign in to comment.