Changeset 16239 in josm
- Timestamp:
- 2020-04-06T02:17:07+02:00 (5 years ago)
- Location:
- trunk/native/windows
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/native/windows/josm-setup-unix.sh
r13722 r16239 59 59 else 60 60 # no argument: for everyone else 61 svncorerevision=`svnversion -n .. `62 #svnpluginsrevision=`svnversion -n ../../ plugins`61 svncorerevision=`svnversion -n ../..` 62 #svnpluginsrevision=`svnversion -n ../../../plugins` 63 63 #svnrevision="$svncorerevision-$svnpluginsrevision" 64 64 … … 66 66 export VERSION=`echo ${svncorerevision} | sed -e 's/M//g' -e 's/S//g' -e 's/P//g'` 67 67 export JOSM_BUILD="yes" 68 export JOSM_FILE="..\ dist\josm-custom.jar"68 export JOSM_FILE="..\..\dist\josm-custom.jar" 69 69 fi 70 70 … … 77 77 ( 78 78 echo "Build the Complete josm Stuff" 79 79 80 80 echo "Compile Josm" 81 cd ../ core81 cd ../.. 82 82 ant -q clean 83 83 ant -q compile || exit -1 84 84 cd .. 85 85 86 86 echo "Compile Josm Plugins" 87 87 cd plugins -
trunk/native/windows/josm.nsi
r15915 r16239 64 64 65 65 !insertmacro MUI_PAGE_WELCOME 66 !insertmacro MUI_PAGE_LICENSE "..\ LICENSE"66 !insertmacro MUI_PAGE_LICENSE "..\..\LICENSE" 67 67 !insertmacro MUI_PAGE_COMPONENTS 68 68 !insertmacro MUI_PAGE_DIRECTORY … … 297 297 SetShellVarContext current 298 298 SetOutPath $APPDATA\JOSM\plugins 299 File "../../ dist/imagery_offset_db.jar"299 File "../../../dist/imagery_offset_db.jar" 300 300 StrCpy $plugins "$plugins<entry value='imagery_offset_db'/>" 301 301 SectionEnd … … 306 306 SetShellVarContext current 307 307 SetOutPath $APPDATA\JOSM\plugins 308 File "../../ dist/turnrestrictions.jar"308 File "../../../dist/turnrestrictions.jar" 309 309 StrCpy $plugins "$plugins<entry value='turnrestrictions'/>" 310 310 SectionEnd
Note:
See TracChangeset
for help on using the changeset viewer.