Ticket #10036: regression.py.patch

File regression.py.patch, 757 bytes (added by Niklas Angare <li51ckf02@…>, 8 years ago)

Fix for unknown option hard

  • tools/regression/src/regression.py

    diff --git a/tools/regression/src/regression.py b/tools/regression/src/regression.py
    index c2d2c91..44e8f81 100644
    a b class runner:  
    914914                self.git_command( 'submodule', 'update', '--init' )
    915915                self.git_command( 'checkout', branch)
    916916                if clean:
    917                     self.git_command( 'submodule foreach', '"git reset --quiet --hard; git clean -fxd"')
     917                    self.git_command( 'submodule foreach', 'git reset --quiet --hard; git clean -fxd')
    918918                    self.git_command( 'reset', '--hard' )
    919919                    self.git_command( 'clean', '-fxd')
    920920                    self.git_command( 'status' )