summaryrefslogtreecommitdiffstats
path: root/coin/create_ifw_installer.py
diff options
context:
space:
mode:
authorKatja Marttila <katja.marttila@qt.io>2021-02-17 13:54:48 +0200
committerKatja Marttila <katja.marttila@qt.io>2021-03-12 14:39:40 +0200
commitb477c56e9a528db9bf9fa30c1be41be08011da32 (patch)
treef2ebafd0f052470d19ee1c118c157e47d2889cbb /coin/create_ifw_installer.py
parent7b9235b16fe5f6a0e72a03724b1533c10364fa77 (diff)
Add installer generation to make_instructions.yaml
Change-Id: Ief0885c94e7497de834e6f6de14bd485244e8ab0 Reviewed-by: Arttu Tarkiainen <arttu.tarkiainen@qt.io>
Diffstat (limited to 'coin/create_ifw_installer.py')
-rwxr-xr-xcoin/create_ifw_installer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/coin/create_ifw_installer.py b/coin/create_ifw_installer.py
index aacb6adeb..6da4f1d16 100755
--- a/coin/create_ifw_installer.py
+++ b/coin/create_ifw_installer.py
@@ -76,7 +76,7 @@ def create_installer_package(src_dir: str, bld_dir: str, target_dir: str, target
check_call(["strip", os.path.join(package_dir, 'bin/repogen')])
# Copy remaining payload to package dir
- shutil.copytree(os.path.join(bld_dir, 'doc'), os.path.join(package_dir, 'doc'))
+ shutil.copytree(os.path.join(bld_dir, 'doc/html'), os.path.join(package_dir, 'doc/html'))
shutil.copytree(os.path.join(src_dir, 'examples'), os.path.join(package_dir, 'examples'))
shutil.copy(os.path.join(src_dir, 'README'), package_dir)