Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Add support for the WorkingDirectory attribute on the Shortcut element
Browse files Browse the repository at this point in the history
  • Loading branch information
dieterv committed Jan 17, 2011
1 parent e26c3c4 commit 0f05b68
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions bin/build_installer.py
Expand Up @@ -693,6 +693,9 @@ def transform_shortcuts(self, element):
if 'Arguments' in child.keys():
shortcut.set('Arguments', child.get('Arguments'))

if 'WorkingDirectory' in child.keys():
shortcut.set('WorkingDirectory', child.get('WorkingDirectory'))

registrykey = etree.SubElement(component,
'{%s}RegistryKey' % WIX_NS,
Root=root,
Expand Down

0 comments on commit 0f05b68

Please sign in to comment.