smartgic / docker-mycroft

Mycroft AI Voice Assistant Docker images and docker-compose.yml files for x86_64, arm7vl and aarch64 CPU architectures.
https://hub.docker.com/u/smartgic
Apache License 2.0
41 stars 8 forks source link

run.sh syntax errors #16

Closed Nomadjackalope closed 3 years ago

Nomadjackalope commented 3 years ago

Lines 45 and 46 contain syntax errors where the : should be ; They are currently

45: m) modelsfolder=${OPTARG};:

46: s) cachefolder=${OPTARG};:

but should be

45: m) modelsfolder=${OPTARG};;

46: s) cachefolder=${OPTARG};;

goldyfruit commented 3 years ago

Thanks for reporting the issue. Fixed.