Skip to content

Commit

Permalink
Fix/test jobs (#39)
Browse files Browse the repository at this point in the history
* fix: removed quotes from run-tests

* added SC2086 override

---------

Co-authored-by: Jalexchen <[email protected]>
  • Loading branch information
ryanbourdais and JalexChen authored Feb 16, 2023
1 parent 7e9eaac commit cd1c02a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .circleci/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ workflows:
filters: *filters
- maven/test:
app_src_directory: sample_app
command: test -DforkCount=4
filters: *filters
- orb-tools/publish:
orb-name: circleci/maven
Expand Down
4 changes: 3 additions & 1 deletion src/scripts/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ if [ -n "$PARAM_SETTINGS_FILE" ]; then
fi

set -x
"$PARAM_MVN_COMMAND" "$PARAM_COMMAND" "$@"
# shellcheck disable=SC2086
$PARAM_MVN_COMMAND $PARAM_COMMAND "$@"

set +x

0 comments on commit cd1c02a

Please sign in to comment.