Allow to disable installing .desktop files
This commit is contained in:
parent
f17e1a66b4
commit
281e56c442
@ -560,7 +560,7 @@ def cmd_install(config, options):
|
|||||||
"""Install the activity in the system"""
|
"""Install the activity in the system"""
|
||||||
|
|
||||||
installer = Installer(Builder(config))
|
installer = Installer(Builder(config))
|
||||||
installer.install(options.prefix, options.install_mime)
|
installer.install(options.prefix, options.install_mime, options.install_desktop_file)
|
||||||
|
|
||||||
|
|
||||||
def _po_escape(string):
|
def _po_escape(string):
|
||||||
@ -645,6 +645,10 @@ def start():
|
|||||||
"--skip-install-mime", dest="install_mime",
|
"--skip-install-mime", dest="install_mime",
|
||||||
action="store_false", default=True,
|
action="store_false", default=True,
|
||||||
help="Skip the installation of custom mime types in the system")
|
help="Skip the installation of custom mime types in the system")
|
||||||
|
install_parser.add_argument(
|
||||||
|
"--skip-install-desktop-file", dest="install_desktop_file",
|
||||||
|
action="store_false", default=True,
|
||||||
|
help="Skip the installation of desktop file in the system")
|
||||||
|
|
||||||
check_parser = subparsers.add_parser(
|
check_parser = subparsers.add_parser(
|
||||||
"check", help="Run tests for the activity")
|
"check", help="Run tests for the activity")
|
||||||
|
Loading…
Reference in New Issue
Block a user