diff --git a/tools/regression/src/regression.py b/tools/regression/src/regression.py
index c2d2c91..44e8f81 100644
|
a
|
b
|
class runner:
|
| 914 | 914 | self.git_command( 'submodule', 'update', '--init' ) |
| 915 | 915 | self.git_command( 'checkout', branch) |
| 916 | 916 | 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') |
| 918 | 918 | self.git_command( 'reset', '--hard' ) |
| 919 | 919 | self.git_command( 'clean', '-fxd') |
| 920 | 920 | self.git_command( 'status' ) |