Closed Nomadjackalope closed 3 years ago
Lines 45 and 46 contain syntax errors where the : should be ; They are currently
45: m) modelsfolder=${OPTARG};:
m) modelsfolder=${OPTARG};:
46: s) cachefolder=${OPTARG};:
s) cachefolder=${OPTARG};:
but should be
45: m) modelsfolder=${OPTARG};;
m) modelsfolder=${OPTARG};;
46: s) cachefolder=${OPTARG};;
s) cachefolder=${OPTARG};;
Thanks for reporting the issue. Fixed.
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};;