aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@digia.com>2013-08-26 13:21:15 +0200
committerAndras Becsi <andras.becsi@digia.com>2013-08-26 16:54:05 +0200
commit023899f67f920f7e69ec79f8f871e76b98386eae (patch)
treed675214cbb16d633c4e580877c2ed02ac31b2bc3 /dist
parent17d0d73d80b4ad554774dabf831959565a04f6c1 (diff)
Explicitly specify that we want to create offline installers
Change-Id: I9ac8d796b16603492b4175b40ea0fc9e8f19bfce Reviewed-by: Jędrzej Nowacki <jedrzej.nowacki@digia.com>
Diffstat (limited to 'dist')
-rw-r--r--dist/create_installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dist/create_installer.py b/dist/create_installer.py
index 508a410..d7e3e2a 100644
--- a/dist/create_installer.py
+++ b/dist/create_installer.py
@@ -132,6 +132,6 @@ os.mkdir(modulesPath)
shutil.copyfile("build/mkspecs/modules-inst/qt_lib_enginio.pri", modulesPath + "/qt_lib_enginio.pri")
-subprocess.check_call([binarycreator, "-c", "config" + os.sep + "config.xml", "-p", "packages", "EnginioInstaller_" + VERSION])
+subprocess.check_call([binarycreator, "--offline-only", "-c", "config" + os.sep + "config.xml", "-p", "packages", "EnginioInstaller_" + VERSION])
print("Installer created.")