This commit is contained in:
Michel Roegl-Brunner 2025-03-18 09:46:19 +01:00
parent fa82c67091
commit 63fa4b9658

View File

@ -64,23 +64,17 @@ jobs:
json_file="frontend/public/json/${script_name}.json" json_file="frontend/public/json/${script_name}.json"
if [[ -f "$ct_file" ]]; then if [[ ! -f "$ct_file" ]]; then
else
echo "ct file not found." echo "ct file not found."
echo "files_found=false" >> $GITHUB_OUTPUT echo "files_found=false" >> $GITHUB_OUTPUT
echo "missing=$ct_file" >> $GITHUB_OUTPUT echo "missing=$ct_file" >> $GITHUB_OUTPUT
fi fi
if [[ -f "$install_file" ]]; then if [[ ! -f "$install_file" ]]; then
else
echo "install file not found." echo "install file not found."
echo "files_found=false" >> $GITHUB_OUTPUT echo "files_found=false" >> $GITHUB_OUTPUT
echo "missing=$install_file" >> $GITHUB_OUTPUT echo "missing=$install_file" >> $GITHUB_OUTPUT
fi fi
if [[ -f "$json_file" ]]; then if [[ ! -f "$json_file" ]]; then
else
echo "json file not found." echo "json file not found."
echo "files_found=false" >> $GITHUB_OUTPUT echo "files_found=false" >> $GITHUB_OUTPUT
echo "missing=$json_file" >> $GITHUB_OUTPUT echo "missing=$json_file" >> $GITHUB_OUTPUT