Skip to content

Commit

Permalink
Merge pull request #219 from andrewnicols/composerDev
Browse files Browse the repository at this point in the history
Remove --dev arg from composer install
  • Loading branch information
junpataleta authored Jul 3, 2023
2 parents 6d2d6b1 + 161415c commit eb40d5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mdk/commands/behat.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def run(self, args):
f.close()
M.cli('/' + cliFile, stdout=None, stderr=None)
os.remove(cliPath)
M.cli('composer.phar', args='install --dev', stdout=None, stderr=None)
M.cli('composer.phar', args='install', stdout=None, stderr=None)

# Download selenium
seleniumPath = os.path.expanduser(os.path.join(self.C.get('dirs.mdk'), 'selenium.jar'))
Expand Down
2 changes: 1 addition & 1 deletion mdk/commands/phpunit.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def init(self, M, PU, args):
f.close()
M.cli('/' + cliFile, stdout=None, stderr=None)
os.remove(cliPath)
M.cli('composer.phar', args='install --dev', stdout=None, stderr=None)
M.cli('composer.phar', args='install', stdout=None, stderr=None)

# If Oracle, ask the user for a Behat prefix, if not set.
prefix = M.get('phpunit_prefix')
Expand Down

0 comments on commit eb40d5d

Please sign in to comment.