mirror of
https://github.com/home-assistant/core.git
synced 2025-12-25 21:47:08 +00:00
* added gactions install script * added gaction setup step * added ability to not install gaction * updated dev docker file
11 lines
254 B
Bash
11 lines
254 B
Bash
#!/bin/bash
|
|
# Sets up gactions for the google_assistant component.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
curl -LSO https://dl.google.com/gactions/updates/bin/linux/amd64/gactions/gactions
|
|
mv gactions /usr/bin/gactions
|
|
chmod +x /usr/bin/gactions
|
|
/usr/bin/gactions -V
|