Skip to content

Commit

Permalink
REVERT: Temporarily run script in debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
colluca committed Sep 6, 2024
1 parent 4ba5279 commit 1ecc082
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ runs:
working-directory: ${{ inputs.working-directory }}
run: |
pwd
hash=$(./list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash 2>/dev/null)
prerequisites=$(./list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} 2>/dev/null)
${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash --debug
echo $?
hash=$(${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} --hash 2>/dev/null)
echo $hash
prerequisites=$(${GITHUB_ACTION_PATH}/list-make-prerequisites.py ${{ inputs.target }} ${{ inputs.flags }} 2>/dev/null)
echo $prerequisites
echo "hash=$hash" >> $GITHUB_OUTPUT
echo $?
echo "prerequisites=$prerequisites" >> $GITHUB_OUTPUT
echo $?

0 comments on commit 1ecc082

Please sign in to comment.