Update ./install-linux to use the correct path to the installer.
This commit is contained in:
parent
d61ec9a6fe
commit
6128325696
|
@ -1,7 +1,7 @@
|
||||||
cd ./install
|
go get -u github.com/mailru/easyjson/...
|
||||||
go generate
|
easyjson -pkg common
|
||||||
go build -o Installer
|
go get
|
||||||
mv ./Installer ..
|
|
||||||
cd ..
|
go build -o Installer "./cmd/install"
|
||||||
|
|
||||||
./Installer --dbType=mysql --dbHost=localhost --dbUser=$MYSQL_USER --dbPassword=$MYSQL_PASSWORD --dbName=$MYSQL_DATABASE --shortSiteName=$SITE_SHORT_NAME --siteName=$SITE_NAME --siteURL=$SITE_URL --serverPort=$SERVER_PORT--secureServerPort=$SECURE_SERVER_PORT
|
./Installer --dbType=mysql --dbHost=localhost --dbUser=$MYSQL_USER --dbPassword=$MYSQL_PASSWORD --dbName=$MYSQL_DATABASE --shortSiteName=$SITE_SHORT_NAME --siteName=$SITE_NAME --siteURL=$SITE_URL --serverPort=$SERVER_PORT--secureServerPort=$SECURE_SERVER_PORT
|
|
@ -4,7 +4,7 @@ easyjson -pkg common
|
||||||
go get
|
go get
|
||||||
|
|
||||||
echo "Building the installer"
|
echo "Building the installer"
|
||||||
go build -o Installer "./install"
|
go build -o Installer "./cmd/install"
|
||||||
|
|
||||||
echo "Running the installer"
|
echo "Running the installer"
|
||||||
./Installer
|
./Installer
|
||||||
|
|
Loading…
Reference in New Issue