mirror of
https://github.com/home-assistant/core.git
synced 2025-11-09 10:59:40 +00:00
12 lines
137 B
Bash
Executable File
12 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
# Sets up ffmpeg.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
PACKAGES=(
|
|
ffmpeg
|
|
)
|
|
|
|
apt-get install -y --no-install-recommends ${PACKAGES[@]}
|