This commit is contained in:
Michel Roegl-Brunner 2025-03-10 15:28:47 +01:00
parent 6a0d9588f4
commit b69317cf31

View File

@ -32,11 +32,9 @@ jobs:
script_name="${{ env.script_name }}" script_name="${{ env.script_name }}"
# Check if files exist under /ct, /install, and /json # Check if files exist under /ct, /install, and /json
ct_file="ct/$script_name.sh" ct_file="ct/${script_name}.sh"
install_file="install/$script_name-install.sh" install_file="install/${script_name}-install.sh"
json_file="json/$script_name.json" json_file="json/${script_name}.json"
echo "Checking for script files:"
if [[ -f "$ct_file" && -f "$install_file" && -f "$json_file" ]]; then if [[ -f "$ct_file" && -f "$install_file" && -f "$json_file" ]]; then
echo "All required files found." echo "All required files found."