Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ZerXes
Tor
Commits
c281e587
Commit
c281e587
authored
Jan 15, 2019
by
Nick Mathewson
🏃
Browse files
Merge branch 'ticket28058_squashed'
parents
b169c8c1
30a925fe
Changes
3
Hide whitespace changes
Inline
Side-by-side
.travis.yml
View file @
c281e587
...
...
@@ -131,6 +131,7 @@ addons:
-
docbook-xsl
-
docbook-xml
-
xmlto
-
shellcheck
## (OSX only)
homebrew
:
packages
:
...
...
@@ -154,6 +155,7 @@ addons:
## Always installed, because manual brew installs are hard to get right
-
asciidoc
-
xmlto
-
shellcheck
## (OSX only) Use the default OSX image
## See https://docs.travis-ci.com/user/reference/osx#os-x-version
...
...
Makefile.am
View file @
c281e587
...
...
@@ -215,7 +215,16 @@ doxygen:
test
:
all
$(top_builddir)
/src/test/test
check-local
:
check-spaces check-changes check-includes
shellcheck
:
# Only use shellcheck if it is present
if
command
-v
shellcheck;
then
\
find
$(top_srcdir)/scripts/
-name
"*.sh"
-exec
shellcheck
{}
+;
\
if
[
-d
"$(top_srcdir)/scripts/test"
];
then
\
shellcheck
$(top_srcdir)/scripts/test/cov-diff
$(top_builddir)/scripts/test/coverage;
\
fi;
\
fi
check-local
:
check-spaces check-changes check-includes shellcheck
need-chutney-path
:
@
if
test
!
-d
"
$$
CHUTNEY_PATH"
;
then
\
...
...
changes/ticket28058
0 → 100644
View file @
c281e587
o Testing:
- Run shellcheck for stuff in scripts/ directory. Closes ticket 28058.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment