Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_Build_1000 / install / instalador-gvSIG-win / resources / install.bat @ 41849

History | View | Annotate | Download (609 Bytes)

1
REM This is used at installation time, in order to perform some extra actions
2
REM that the installer is not able to do
3

    
4
REM different syntax in win98 and (nt, xp)
5

    
6
SET > salida.txt
7
SET
8
IF OS_%os% == OS_Windows_NT GOTO wnt
9
GOTO win
10

    
11
:wnt
12
IF NOT EXIST $USER_HOME\gvSIG MKDIR $USER_HOME\gvSIG
13
IF NOT EXIST $USER_HOME\gvSIG\andami-config.xml COPY $INSTALL_PATH\bin\andami-config.xml $USER_HOME\gvSIG\andami-config.xml
14

    
15
:win
16
IF NOT EXIST "$USER_HOME"\gvSIG MKDIR "$USER_HOME"\gvSIG
17
IF NOT EXIST "$USER_HOME"\gvSIG\andami-config.xml COPY "$INSTALL_PATH"\bin\andami-config.xml "$USER_HOME"\gvSIG\andami-config.xml
18

    
19