Skip to content

Commit

Permalink
add missing "
Browse files Browse the repository at this point in the history
  • Loading branch information
Randomblock1 committed Dec 15, 2020
1 parent 10a6843 commit 2b3f085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
- name: get theos
shell: bash
run: |
if [ ! -d "${{ github.workspace }}/${{ inputs.theos-dir }} ]; then
if [ ! -d "${{ github.workspace }}/${{ inputs.theos-dir }}" ]; then
git clone ${{ inputs.theos-src }} ${{ github.workspace }}/${{ inputs.theos-dir }} --recursive
echo "Theos successfully obtained!"
else echo "Theos already cached, skipping..."
Expand All @@ -36,7 +36,7 @@ runs:
- name: get sdks
shell: bash
run: |
if [ ! -d "${{ github.workspace }}/${{ inputs.theos-dir }}/sdks ]; then
if [ ! -d "${{ github.workspace }}/${{ inputs.theos-dir }}/sdks" ]; then
cd ${{ github.workspace }}/${{ inputs.theos-dir }}/sdks
curl -sLO ${{ inputs.theos-sdks }}/archive/master.zip
TMP=$(mktemp -d)
Expand Down

0 comments on commit 2b3f085

Please sign in to comment.