We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0130a71 commit 87b9542Copy full SHA for 87b9542
.github/actions/setup-kat/action.yml
@@ -24,14 +24,10 @@ runs:
24
aws s3 cp s3://kotlin-sdk-build-tools/kat-releases/$kat_version/kat-$kat_version.zip ./kat.zip
25
26
echo "Unzipping kat tool"
27
- unzip ./kat.zip -d kat
+ unzip -qq ./kat.zip -d kat
28
29
kat_binary_path="$PWD/kat/kat-$kat_version/bin"
30
export PATH="$kat_binary_path:$PATH"
31
echo "$kat_binary_path" >> $GITHUB_PATH
32
33
- # Debug
34
- echo "Current PATH: $PATH"
35
- ls -l "$kat_binary_path"
36
-
37
echo "Installed kat version $(kat version)" || (echo "Failed to execute kat command" && exit 1)
0 commit comments