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:
Shawn Pearce 2013-08-26 08:28:09 -07:00
parent f6c0bec0b2
commit 5314a0ed02

View File

@ -57,5 +57,5 @@ for spec in args.s:
'-Dfile=%s' % src,
])
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)