MassBank / MassBank-web

The web server application and directly connected components for a MassBank web server
13 stars 22 forks source link

Deprecate version control in install.sh? #390

Closed tsufz closed 10 months ago

tsufz commented 10 months ago

sh ./install.sh start x results in

./install.sh: 22: [[: not found
Docker compouns V2 not found, Expected 2.x.

Docker compose version 2.20.2

meier-rene commented 10 months ago

Shell 'sh' is not compatible with the "if [[ $OUT = 2* ]]" syntax. Please use "bash ./install.sh start x" or make install.sh executable if it isn't already and just use "./install.sh start x".

tsufz commented 10 months ago

Okay, Thanks!