* flatpak/flatpakutils.py:
(WebkitFlatpak.load_from_args):
(WebkitFlatpak.__init__):
(WebkitFlatpak.run):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@236203
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2018-09-19 Michael Catanzaro <mcatanzaro@igalia.com>
2018-09-19 Michael Catanzaro <mcatanzaro@igalia.com>
+ [WPE][GTK] Unreviewed, fix a pervasive typo in the webkit-flatpak script
+
+ * flatpak/flatpakutils.py:
+ (WebkitFlatpak.load_from_args):
+ (WebkitFlatpak.__init__):
+ (WebkitFlatpak.run):
+
+2018-09-19 Michael Catanzaro <mcatanzaro@igalia.com>
+
[WPE][GTK] Unreviewed, update to latest GNOME SDK
* flatpak/org.webkit.WebKit.yaml:
[WPE][GTK] Unreviewed, update to latest GNOME SDK
* flatpak/org.webkit.WebKit.yaml:
general.add_argument("-y", "--assumeyes",
help="Automatically answer yes for all questions.",
action="store_true")
general.add_argument("-y", "--assumeyes",
help="Automatically answer yes for all questions.",
action="store_true")
- general.add_argument('--avalaible', action='store_true', dest="check_avalaible", help='Check if required dependencies are avalaible.'),
+ general.add_argument('--available', action='store_true', dest="check_available", help='Check if required dependencies are available.'),
debugoptions = parser.add_argument_group("Debugging")
debugoptions.add_argument("--gdb", nargs="?", help="Activate gdb, passing extra args to it if wanted.")
debugoptions = parser.add_argument_group("Debugging")
debugoptions.add_argument("--gdb", nargs="?", help="Activate gdb, passing extra args to it if wanted.")
self.cache_path = None
self.app_module = None
self.flatpak_default_args = []
self.cache_path = None
self.app_module = None
self.flatpak_default_args = []
- self.check_avalaible = False
+ self.check_available = False
self.assumeyes = False
# Default application to run in the sandbox
self.assumeyes = False
# Default application to run in the sandbox
if not self.clean_args():
return 1
if not self.clean_args():
return 1
- if self.check_avalaible:
+ if self.check_available: