From 6927f4bc980df687f010532a29e824578ae13ec5 Mon Sep 17 00:00:00 2001 From: Rob Nadin Date: Thu, 5 Mar 2020 16:02:21 +0000 Subject: [PATCH] Suppress output of PlistBuddy when disabling "KeyboardContinuousPathEnabled" --- fastlane_core/lib/fastlane_core/device_manager.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane_core/lib/fastlane_core/device_manager.rb b/fastlane_core/lib/fastlane_core/device_manager.rb index 68126364910..6d93e032ce2 100644 --- a/fastlane_core/lib/fastlane_core/device_manager.rb +++ b/fastlane_core/lib/fastlane_core/device_manager.rb @@ -223,7 +223,7 @@ def disable_slide_to_type plist_buddy_cmd = "-c \"Add :KeyboardContinuousPathEnabled bool false\"" plist_path = File.expand_path("~/Library/Developer/CoreSimulator/Devices/#{self.udid}/data/Library/Preferences/com.apple.keyboard.ContinuousPath.plist") - Helper.backticks("#{plist_buddy} #{plist_buddy_cmd} #{plist_path}") + Helper.backticks("#{plist_buddy} #{plist_buddy_cmd} #{plist_path} >/dev/null 2>&1") end end end