mirror of
https://github.com/BtbN/FFmpeg-Builds.git
synced 2025-05-02 23:54:40 +02:00
14 lines
230 B
Bash
14 lines
230 B
Bash
#!/bin/bash
|
|
|
|
if [[ $# -lt 1 || $# -gt 2 ]]; then
|
|
echo "Invalid Arguments"
|
|
exit -1
|
|
fi
|
|
|
|
TARGET="$1"
|
|
VARIANT="${2:-gpl}"
|
|
REPO="${GITHUB_REPOSITORY:-btbn/ffmpeg-builds}"
|
|
REPO="${REPO,,}"
|
|
|
|
IMAGE="$REPO/$TARGET-$VARIANT:latest"
|