- renamed json file to make it appear its not there
- ignore errors with cat command
This commit is contained in:
Victor 2024-04-10 23:26:23 -05:00
parent 3a89a16cf2
commit 24251d5fbb
Failed to generate hash of commit
2 changed files with 2 additions and 2 deletions

View file

@ -62,11 +62,11 @@ jobs:
qmk userspace-doctor
- name: Read Non-Tree Targets from JSON file
if: ${{ hashFiles( $GITHUB_WORKSPACE/qmk_nontree.json ) != '' }}
if: steps.check_json_file.outputs.files_exists == 'true'
run: |
{
echo 'COPY_TARGETS<<EOF'
cat $GITHUB_WORKSPACE/qmk_nontree.json
cat $GITHUB_WORKSPACE/qmk_nontree.json 2>/dev/null
echo 'EOF'
} >> "$GITHUB_ENV"