add return code info
Some checks failed
Release / release (release) Failing after 2s
Test / test-cache (ubuntu-latest) (push) Has been cancelled

This commit is contained in:
Naxdy 2024-09-01 13:48:51 +02:00
parent fe7e4e104a
commit 5121b742ce
Signed by: Naxdy
GPG key ID: CC15075846BCE91B

View file

@ -36,5 +36,6 @@ export const install = async () => {
export const isInstalled = async () => {
let return_code = await exec("attic", ["-V"]);
core.info(`Attic command returned code ${return_code}`);
return return_code === 0;
};