Skip to content

Commit

Permalink
Merge pull request #2 from GreatWizard/fix/mkdir
Browse files Browse the repository at this point in the history
fix: fix mkdir if the dir already exists
  • Loading branch information
kbairak authored Mar 14, 2023
2 parents bc67c0a + 7fc8511 commit 4a6ae32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ runs:
using: 'composite'
steps:
- name: Create temporary directory to store the CLI
run: mkdir /tmp/tx
run: mkdir -p /tmp/tx
shell: bash
- name: Download the CLI
run: curl -o- https://raw.githubusercontent.com/transifex/cli/master/install.sh | bash -s -- ${{ inputs.version }}
Expand Down

0 comments on commit 4a6ae32

Please sign in to comment.