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
Prada Sarasola, Miguel
templates
Commits
43d3513e
Commit
43d3513e
authored
Oct 08, 2020
by
Jon Azpiazu
Browse files
Fixes in the job returning code
parent
3eed0b96
Changes
2
Hide whitespace changes
Inline
Side-by-side
.gitlab-industrial-ci-kinetic-no-rosinstall.yml
View file @
43d3513e
...
...
@@ -113,8 +113,8 @@ bash_syntax:
stage
:
postcheck
script
:
-
RET=0
-
find . -type f -name '*.sh' -exec shellcheck -s sh {}
\;
-
find . -type f -name '*.bash' -exec shellcheck -s bash {}
\;
-
find . -type f -name '*.sh' -exec shellcheck -s sh {}
+ || RET=1
-
find . -type f -name '*.bash' -exec shellcheck -s bash {}
+ || RET=1
-
exit $RET
when
:
always
tags
:
...
...
.gitlab-industrial-ci-kinetic-with-rosinstall.yml
View file @
43d3513e
...
...
@@ -115,8 +115,8 @@ bash_syntax:
stage
:
postcheck
script
:
-
RET=0
-
find . -type f -name '*.sh' -exec shellcheck -s sh {}
\;
-
find . -type f -name '*.bash' -exec shellcheck -s bash {}
\;
-
find . -type f -name '*.sh' -exec shellcheck -s sh {}
+ || RET=1
-
find . -type f -name '*.bash' -exec shellcheck -s bash {}
+ || RET=1
-
exit $RET
when
:
always
tags
:
...
...
Write
Preview
Supports
Markdown
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