tools/maven/mvn: Fix error message if mvn is not found
The correct reference to the action name is args.a. action is an old variable that was replaced by args.a and this reference was missed. Bug: issue 2086 Change-Id: Ibfbf523db8a8adfbf72f31de3ddc7b0ec96014eb
This commit is contained in:
parent
f6c0bec0b2
commit
5314a0ed02
@ -57,5 +57,5 @@ for spec in args.s:
|
|||||||
'-Dfile=%s' % src,
|
'-Dfile=%s' % src,
|
||||||
])
|
])
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print('%s command failed: %s' % (action, e), file=stderr)
|
print('%s command failed: %s' % (args.a, e), file=stderr)
|
||||||
exit(1)
|
exit(1)
|
||||||
|
Loading…
Reference in New Issue
Block a user