Skip to content

Commit

Permalink
Cleanup + added newline
Browse files Browse the repository at this point in the history
  • Loading branch information
baua committed Mar 29, 2017
1 parent 12f2a3b commit fcde233
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion module/cpf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ function ::cpf:theme() {
module) ::cpf:module "${arg}";;
function)
IFS=: read -r module fn <<< "${arg}"
::cpf:function ${module} ${fn}
::cpf:function "${module}" "${fn}"
;;
*) core:raise EXCEPTION_BAD_FN_CALL 2;;
esac
Expand Down
2 changes: 1 addition & 1 deletion module/unit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ function ${utf}Dyn${i}NoArgs() {
#. TODO: At the moment, no way to tell automatically if its CODE_DEFAULT or CODE_SUCCESS we expect
#. TODO: so this either/or approach will have to do.
core:softimport ${module}
cpf " %{@comment ___simbol} %{!function:${module}:${fn}} {no-args} "
cpf " %{@comment ___simbol} %{!function:${module}:${fn}} {no-args}\n"
if assertEquals "import ${module}" ${CODE_SUCCESS?} \$?; then
${ffn} >/dev/null 2>&1
((e=\$? % ${CODE_DEFAULT?})) #. See why above
Expand Down
2 changes: 1 addition & 1 deletion share/unit/citm
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ function citm:kcov() {
shift
echo "$ citm:kcov run ${*}"
mkdir coverage
if [ ${#TRAVIS_JOB_ID} -gt 0 ]; then
if [ ${#TRAVIS_JOB_ID} -eq 0 ]; then
kcov coverage "$@"
else
kcov --coveralls-id=${TRAVIS_JOB_ID?} coverage "$@"
Expand Down

0 comments on commit fcde233

Please sign in to comment.