Author: Ulrike Uhlig <u@451f.org>
Description: call tails-installer from /usr/lib
 dh_override_install moves tails-installer from
 /usr/bin to /usr/lib/tails_installer. We want to treat
 tails-installer as a mere helper for now, as it cannot
 yet be executed from the commandline, since the possibility
 to provide a device as an argument is missing.
 .
 Once this is possible, this patch can be removed.
 Commits that can be reverted then:
 commit e09647715549ada61dfeba269c5606fdf94345a0
 commit b4c5bec40d26b28751780dbd97a1654cf39f65b9

--- a/tails_installer/launcher.py
+++ b/tails_installer/launcher.py
@@ -38,7 +38,7 @@
 
     def run_tails_installer(self, args):
         args = ['tails-installer'] + args + self.args
-        os.execvp('tails-installer', args)
+        os.execvp('/usr/lib/tails_installer/tails-installer', args)
 
     def on_clone_install(self, widget, data=None):
         self.run_tails_installer([ '-u', '-n', '--clone', '-P', '-m', '-x' ])
