Skip to content

Commit 344272c

Browse files
Merge pull request #1 from protocol/improve-bash-piping
don't set bash options, use pipes instead
2 parents a150a9b + 9e486a3 commit 344272c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ runs:
1515
for dir in $(find . \( -name vendor -o -name '[._].*' -o -name node_modules \) -prune -o -name go.mod -print | sed 's:/go.mod$::'); do
1616
echo "#=#=#=# $dir #=#=#=#"
1717
pushd $dir > /dev/null
18-
set +e -x
1918
(
2019
${{ inputs.run }}
2120
)
2221
s=$?
23-
set -e +x
2422
if [[ $s != 0 ]]; then status=$s; fi
2523
popd > /dev/null
2624
echo -e "\n\n"

0 commit comments

Comments
 (0)