diff options
author | watcher <watcherhd@gmail.com> | 2016-11-15 13:04:03 +0200 |
---|---|---|
committer | watcher <watcherhd@gmail.com> | 2016-11-15 13:04:03 +0200 |
commit | 2ca7134bc008c44ac095c336416b577b96cde7f4 (patch) | |
tree | db56eee997daab99a60d12cdb6458f0cb8e951c1 /tools/installer_ng_stable | |
parent | c19f2f90fa1e72f346e511fa166f461f890ede7c (diff) |
installer fix
Diffstat (limited to 'tools/installer_ng_stable')
-rw-r--r-- | tools/installer_ng_stable/MirandaNG.iss | 1 | ||||
-rw-r--r-- | tools/installer_ng_stable/compile.bat | 4 | ||||
-rw-r--r-- | tools/installer_ng_stable/createstructure.bat | 2 |
3 files changed, 3 insertions, 4 deletions
diff --git a/tools/installer_ng_stable/MirandaNG.iss b/tools/installer_ng_stable/MirandaNG.iss index 2008cc707d..36a2c566cd 100644 --- a/tools/installer_ng_stable/MirandaNG.iss +++ b/tools/installer_ng_stable/MirandaNG.iss @@ -83,7 +83,6 @@ Source: "Files\Libs\Zlib.mir"; DestDir: "{app}\Libs"; Components: program; Flags Source: "Files\Core\StdAuth.dll"; DestDir: "{app}\Core"; Components: program; Flags: ignoreversion; AfterInstall: ShowPercent()
Source: "Files\Core\StdAutoAway.dll"; DestDir: "{app}\Core"; Components: program; Flags: ignoreversion; AfterInstall: ShowPercent()
Source: "Files\Core\StdAway.dll"; DestDir: "{app}\Core"; Components: program; Flags: ignoreversion; AfterInstall: ShowPercent()
-Source: "Files\Core\StdChat.dll"; DestDir: "{app}\Core"; Components: program; Flags: ignoreversion; AfterInstall: ShowPercent()
Source: "Files\Core\StdClist.dll"; DestDir: "{app}\Core"; Components: program; Flags: ignoreversion; AfterInstall: ShowPercent()
Source: "Files\Core\StdCrypt.dll"; DestDir: "{app}\Core"; Components: program; Flags: ignoreversion; AfterInstall: ShowPercent()
Source: "Files\Core\StdEmail.dll"; DestDir: "{app}\Core"; Components: program; Flags: ignoreversion; AfterInstall: ShowPercent()
diff --git a/tools/installer_ng_stable/compile.bat b/tools/installer_ng_stable/compile.bat index 453b3f255b..e085a5d69e 100644 --- a/tools/installer_ng_stable/compile.bat +++ b/tools/installer_ng_stable/compile.bat @@ -1,8 +1,8 @@ -@echo off
+
rem Get version
if not exist tmp mkdir tmp
if exist tmp\build.no goto mkver
-Tools\wget.exe -O tmp\build.no http://svn.miranda-ng.org/main/trunk/build/build.no
+copy /V /Y ..\..\build\build.no tmp\build.no
:mkver
pushd tmp
for /F "tokens=1,2 delims= " %%i in (build.no) do set ver1=%%i.%%j
diff --git a/tools/installer_ng_stable/createstructure.bat b/tools/installer_ng_stable/createstructure.bat index 126ff501bb..ef7fa974d8 100644 --- a/tools/installer_ng_stable/createstructure.bat +++ b/tools/installer_ng_stable/createstructure.bat @@ -2,7 +2,7 @@ rem Get version
if not exist tmp mkdir tmp
if exist tmp\build.no goto mkver
-Tools\wget.exe -O tmp\build.no http://svn.miranda-ng.org/main/trunk/build/build.no
+copy /V /Y ..\..\build\build.no tmp\build.no
:mkver
pushd tmp
for /F "tokens=1,2 delims= " %%i in (build.no) do set ver1=%%i.%%j
|