Skip to content

Commit

Permalink
fix: remove extra double quote in mkdir command
Browse files Browse the repository at this point in the history
  • Loading branch information
steveteuber committed Jun 5, 2024
1 parent d46809d commit 950b3df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ runs:
ATHENA_RUNNER_LOCATION: ${{ inputs.download-location }}
ATHENA_RUNNER_FILENAME: ${{ inputs.download-filename || inputs.output-filename }}
run: |
mkdir -p "${ATHENA_RUNNER_LOCATION}""
mkdir -p "${ATHENA_RUNNER_LOCATION}"
aws s3 cp ${ATHENA_RESULT_LOCATION} "${ATHENA_RUNNER_LOCATION}/${ATHENA_RUNNER_FILENAME}"
- name: Delete Query Result File
Expand Down

0 comments on commit 950b3df

Please sign in to comment.