build: fix invalid default container name for docker

This commit is contained in:
Thiago França da Silva 2021-10-02 11:17:07 -03:00
parent 483b282086
commit b0e1fa9971

View File

@ -2,7 +2,7 @@ usage() {
echo "$0 [-f] [-c con_name] [-i img_name] [commmand [command_args...]]"
echo " -f: Skip building the container and reuse existing (\"fast\")"
echo " -c: Name of the container to create/use;"
echo " defaults to libass/javascriptsubtitlesoctopus-build"
echo " defaults to libass_javascriptsubtitlesoctopus-build"
echo " -i: Name of the image to buld/use;"
echo " defaults to libass/javascriptsubtitlesoctopus-build"
echo "If no command is given `make` without arguments will be executed"
@ -10,7 +10,7 @@ usage() {
}
OPTIND=1
CONTAINER="libass/javascriptsubtitlesoctopus-build"
CONTAINER="libass_javascriptsubtitlesoctopus-build"
IMAGE="libass/javascriptsubtitlesoctopus-build"
FAST=0
while getopts "fc:s:" opt ; do