summaryrefslogtreecommitdiff
path: root/lib/thandy/packagesys/PackageSystem.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/thandy/packagesys/PackageSystem.py')
-rw-r--r--lib/thandy/packagesys/PackageSystem.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/thandy/packagesys/PackageSystem.py b/lib/thandy/packagesys/PackageSystem.py
index 6a8ab60..ccf5532 100644
--- a/lib/thandy/packagesys/PackageSystem.py
+++ b/lib/thandy/packagesys/PackageSystem.py
@@ -107,6 +107,10 @@ def getInstaller(relPath, extra, defaultFormat, package):
import thandy.packagesys.ExePackages
installer = thandy.packagesys.ExePackages.CommandInstaller(
relPath, extra['cmd_install'], extra.get('cmd_remove'))
+ elif installType == 'thp':
+ import thandy.packagesys.ThpPackages
+ installer = thandy.packagesys.ThpPackages.ThpInstaller(
+ relPath)
else:
return None