mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
patman: Don't run patman when it is imported as a module
Commit 488d19c
(patman: add distutils based installer) has the side effect
of making patman run twice with each invocation. Fix this by checking for
'main program' invocation in patman.py. This is good practice in any case.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Chris Packham <judge.packham@gmail.com>
This commit is contained in:
parent
cc35734358
commit
9649e152cb
1 changed files with 4 additions and 1 deletions
|
@ -74,8 +74,11 @@ specified by tags you place in the commits. Use -n to do a dry run first."""
|
|||
settings.Setup(parser, options.project, '')
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
if __name__ != "__main__":
|
||||
pass
|
||||
|
||||
# Run our meagre tests
|
||||
if options.test:
|
||||
elif options.test:
|
||||
import doctest
|
||||
|
||||
sys.argv = [sys.argv[0]]
|
||||
|
|
Loading…
Add table
Reference in a new issue