Add missing semicolon in run-tox.sh
The find invocation in run-tox.sh needs a terminating ";" (oops!), not just a "\" at the end. Change-Id: Ib39ed79d9c0e81bb2800b1965fcc2b06e5aa5dfe
This commit is contained in:
parent
603e0196e0
commit
03695eb421
@ -139,6 +139,6 @@ check_nose_html
|
||||
# Rename tox' .log files to .log.txt so that Apache serves them as
|
||||
# text/plain files since it can handle .txt special - and .log is
|
||||
# unknown and therefore served as binary.
|
||||
find .tox -type f -name "*.log" -exec mv {} {}.txt \
|
||||
find .tox -type f -name "*.log" -exec mv {} {}.txt \;
|
||||
|
||||
exit $result
|
||||
|
Loading…
Reference in New Issue
Block a user