Skip to content

Commit

Permalink
fix mkdir command
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchcrab committed Aug 28, 2023
1 parent fe10bf3 commit bc0ca69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check_homeassistant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- run: cp -v ci/google-assistant.json secrets/google-assistant.json
- name: 'ensure custom_components are populated'
run: |
mkdir custom_components/browser_mod/ || true
mkdir -p custom_components/browser_mod/ || true
wget $(curl --silent "https://api.github.com/repos/thomasloven/hass-browser_mod/releases/latest" | jq .tarball_url -r) -O browser_mod_latest.tar.gz
tar_dir=$(tar -tf browser_mod_latest.tar.gz | grep -E 'custom_components/browser_mod/$')
tar -zxvf browser_mod_latest.tar.gz --strip-components=3 -C custom_components/browser_mod/ $tar_dir
Expand Down

0 comments on commit bc0ca69

Please sign in to comment.