Skip to content

Commit 87b9542

Browse files
committed
Remove debug and make unzip quiet
1 parent 0130a71 commit 87b9542

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/actions/setup-kat/action.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,10 @@ runs:
2424
aws s3 cp s3://kotlin-sdk-build-tools/kat-releases/$kat_version/kat-$kat_version.zip ./kat.zip
2525
2626
echo "Unzipping kat tool"
27-
unzip ./kat.zip -d kat
27+
unzip -qq ./kat.zip -d kat
2828
2929
kat_binary_path="$PWD/kat/kat-$kat_version/bin"
3030
export PATH="$kat_binary_path:$PATH"
3131
echo "$kat_binary_path" >> $GITHUB_PATH
3232
33-
# Debug
34-
echo "Current PATH: $PATH"
35-
ls -l "$kat_binary_path"
36-
3733
echo "Installed kat version $(kat version)" || (echo "Failed to execute kat command" && exit 1)

0 commit comments

Comments
 (0)