Skip to content

Commit

Permalink
shouldn't have special characters in bat and bump version again
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihengSun committed Feb 14, 2024
1 parent 73a334e commit 0d5e50c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/resources/static/js/gw.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edu = {

sponsor: "ESIPLab incubator project, NASA ACCESS project, NSF Geoinformatics project, NSF Cybertraining project",

version: "1.3.3",
version: "1.3.4",

author: "open source contributors",

Expand Down
7 changes: 4 additions & 3 deletions windows-deployment/launch.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@
REM Check if Java is installed
java -version > nul 2>&1
if %errorlevel% neq 0 (
echo Oops! Java is not installed on your system. Running Geoweaver requires Java.
echo Please download and install JDK (e.g. from https://adoptopenjdk.net/). JDK from other sources can work as well.
echo Oops! Java is not installed on your system and running Geoweaver requires Java
echo Please download and install JDK
echo JDK from other sources can work as well
start https://adoptopenjdk.net/
exit /b %errorlevel%
)
Expand Down Expand Up @@ -32,7 +33,7 @@ REM Check if port 8070 is open
netstat -ano | find "8070" >nul
if not errorlevel 1 (
REM If port 8070 is open, wait for 5 seconds and then open the application in the web browser
timeout /t 10 >nul
timeout /t 5 >nul
start http://localhost:8070/Geoweaver
exit /b 0
)
Expand Down

0 comments on commit 0d5e50c

Please sign in to comment.