Oopsies, need to update these with the new dependency.
This commit is contained in:
parent
47963e10a9
commit
ef2ed96e63
|
@ -1,14 +1,24 @@
|
||||||
echo "Installing the MySQL Driver"
|
echo "Installing the MySQL Driver"
|
||||||
go get -u github.com/go-sql-driver/mysql
|
go get -u github.com/go-sql-driver/mysql
|
||||||
|
|
||||||
echo "Installing the PostgreSQL Driver"
|
echo "Installing the PostgreSQL Driver"
|
||||||
go get -u github.com/lib/pq
|
go get -u github.com/lib/pq
|
||||||
|
|
||||||
echo "Installing bcrypt"
|
echo "Installing bcrypt"
|
||||||
go get -u golang.org/x/crypto/bcrypt
|
go get -u golang.org/x/crypto/bcrypt
|
||||||
|
|
||||||
echo "Installing gopsutil"
|
echo "Installing gopsutil"
|
||||||
go get -u github.com/Azareal/gopsutil
|
go get -u github.com/Azareal/gopsutil
|
||||||
|
|
||||||
echo "Installing Gorilla WebSockets"
|
echo "Installing Gorilla WebSockets"
|
||||||
go get -u github.com/gorilla/websocket
|
go get -u github.com/gorilla/websocket
|
||||||
|
|
||||||
|
echo "Installing Sourcemap (dependency for OttoJS)"
|
||||||
|
go get -u gopkg.in/sourcemap.v1
|
||||||
|
|
||||||
|
echo "Install OttoJS"
|
||||||
|
go get -u github.com/robertkrimen/otto
|
||||||
|
|
||||||
echo "Building the installer"
|
echo "Building the installer"
|
||||||
cd ./install
|
cd ./install
|
||||||
go generate
|
go generate
|
||||||
|
|
23
install.bat
23
install.bat
|
@ -1,39 +1,48 @@
|
||||||
@echo off
|
@echo off
|
||||||
echo Installing the dependencies
|
echo Installing the dependencies
|
||||||
|
|
||||||
echo Installing the MySQL Driver
|
echo Installing the MySQL Driver
|
||||||
go get -u github.com/go-sql-driver/mysql
|
go get -u github.com/go-sql-driver/mysql
|
||||||
if %errorlevel% neq 0 (
|
if %errorlevel% neq 0 (
|
||||||
pause
|
pause
|
||||||
exit /b %errorlevel%
|
exit /b %errorlevel%
|
||||||
)
|
)
|
||||||
|
|
||||||
echo Installing the PostgreSQL Driver
|
echo Installing the PostgreSQL Driver
|
||||||
go get -u github.com/lib/pq
|
go get -u github.com/lib/pq
|
||||||
if %errorlevel% neq 0 (
|
if %errorlevel% neq 0 (
|
||||||
pause
|
pause
|
||||||
exit /b %errorlevel%
|
exit /b %errorlevel%
|
||||||
)
|
)
|
||||||
|
|
||||||
echo Installing the bcrypt library
|
echo Installing the bcrypt library
|
||||||
go get -u golang.org/x/crypto/bcrypt
|
go get -u golang.org/x/crypto/bcrypt
|
||||||
if %errorlevel% neq 0 (
|
if %errorlevel% neq 0 (
|
||||||
pause
|
pause
|
||||||
exit /b %errorlevel%
|
exit /b %errorlevel%
|
||||||
)
|
)
|
||||||
|
|
||||||
|
echo Installing /x/sys/windows (dependency for gopsutil)
|
||||||
go get -u golang.org/x/sys/windows
|
go get -u golang.org/x/sys/windows
|
||||||
if %errorlevel% neq 0 (
|
if %errorlevel% neq 0 (
|
||||||
pause
|
pause
|
||||||
exit /b %errorlevel%
|
exit /b %errorlevel%
|
||||||
)
|
)
|
||||||
|
|
||||||
|
echo Installing wmi (dependency for gopsutil)
|
||||||
go get -u github.com/StackExchange/wmi
|
go get -u github.com/StackExchange/wmi
|
||||||
if %errorlevel% neq 0 (
|
if %errorlevel% neq 0 (
|
||||||
pause
|
pause
|
||||||
exit /b %errorlevel%
|
exit /b %errorlevel%
|
||||||
)
|
)
|
||||||
|
|
||||||
echo Installing the gopsutil library
|
echo Installing the gopsutil library
|
||||||
go get -u github.com/Azareal/gopsutil
|
go get -u github.com/Azareal/gopsutil
|
||||||
if %errorlevel% neq 0 (
|
if %errorlevel% neq 0 (
|
||||||
pause
|
pause
|
||||||
exit /b %errorlevel%
|
exit /b %errorlevel%
|
||||||
)
|
)
|
||||||
|
|
||||||
echo Installing the WebSockets library
|
echo Installing the WebSockets library
|
||||||
go get -u github.com/gorilla/websocket
|
go get -u github.com/gorilla/websocket
|
||||||
if %errorlevel% neq 0 (
|
if %errorlevel% neq 0 (
|
||||||
|
@ -41,6 +50,20 @@ if %errorlevel% neq 0 (
|
||||||
exit /b %errorlevel%
|
exit /b %errorlevel%
|
||||||
)
|
)
|
||||||
|
|
||||||
|
echo Installing Sourcemap (dependency for OttoJS)
|
||||||
|
go get -u gopkg.in/sourcemap.v1
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
pause
|
||||||
|
exit /b %errorlevel%
|
||||||
|
)
|
||||||
|
|
||||||
|
echo Installing the OttoJS
|
||||||
|
go get -u github.com/robertkrimen/otto
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
pause
|
||||||
|
exit /b %errorlevel%
|
||||||
|
)
|
||||||
|
|
||||||
echo Building the installer
|
echo Building the installer
|
||||||
go generate
|
go generate
|
||||||
go build ./install
|
go build ./install
|
||||||
|
|
|
@ -1,10 +1,20 @@
|
||||||
echo "Updating the MySQL Driver"
|
echo "Updating the MySQL Driver"
|
||||||
go get -u github.com/go-sql-driver/mysql
|
go get -u github.com/go-sql-driver/mysql
|
||||||
|
|
||||||
echo "Updating the PostgreSQL Driver"
|
echo "Updating the PostgreSQL Driver"
|
||||||
go get -u github.com/lib/pq
|
go get -u github.com/lib/pq
|
||||||
|
|
||||||
echo "Updating bcrypt"
|
echo "Updating bcrypt"
|
||||||
go get -u golang.org/x/crypto/bcrypt
|
go get -u golang.org/x/crypto/bcrypt
|
||||||
|
|
||||||
echo "Updating gopsutil"
|
echo "Updating gopsutil"
|
||||||
go get -u github.com/Azareal/gopsutil
|
go get -u github.com/Azareal/gopsutil
|
||||||
|
|
||||||
echo "Updating Gorilla WebSockets"
|
echo "Updating Gorilla WebSockets"
|
||||||
go get -u github.com/gorilla/websocket
|
go get -u github.com/gorilla/websocket
|
||||||
|
|
||||||
|
echo "Updating Sourcemap (dependency for OttoJS)"
|
||||||
|
go get -u gopkg.in/sourcemap.v1
|
||||||
|
|
||||||
|
echo "Updating OttoJS"
|
||||||
|
go get -u github.com/robertkrimen/otto
|
||||||
|
|
|
@ -47,5 +47,19 @@ if %errorlevel% neq 0 (
|
||||||
exit /b %errorlevel%
|
exit /b %errorlevel%
|
||||||
)
|
)
|
||||||
|
|
||||||
|
echo Updating Sourcemap (dependency for OttoJS)
|
||||||
|
go get -u gopkg.in/sourcemap.v1
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
pause
|
||||||
|
exit /b %errorlevel%
|
||||||
|
)
|
||||||
|
|
||||||
|
echo Updating OttoJS
|
||||||
|
go get -u github.com/robertkrimen/otto
|
||||||
|
if %errorlevel% neq 0 (
|
||||||
|
pause
|
||||||
|
exit /b %errorlevel%
|
||||||
|
)
|
||||||
|
|
||||||
echo The dependencies were successfully updated
|
echo The dependencies were successfully updated
|
||||||
pause
|
pause
|
||||||
|
|
Loading…
Reference in New Issue