pantograph/lib/pantograph/lane_manager.rb in pantograph-0.1.13 vs pantograph/lib/pantograph/lane_manager.rb in pantograph-0.1.14
- old
+ new
@@ -31,11 +31,11 @@
end
end
if !platform && lane
# Either, the user runs a specific lane in root or want to auto complete the available lanes for a platform
- # e.g. `pantograph ios` should list all available iOS actions
+ # e.g. `pantograph mac` should list all available mac actions
if ff.is_platform_block?(lane)
platform = lane
lane = nil
end
end
@@ -44,10 +44,10 @@
# xcodeproj has a bug in certain versions that causes it to change directories
# and not return to the original working directory
# https://github.com/CocoaPods/Xcodeproj/issues/426
# Setting this environment variable causes xcodeproj to work around the problem
- ENV["FORK_XCODE_WRITING"] = "true" if platform == 'ios'
+ ENV["FORK_XCODE_WRITING"] = "true" if platform == 'mac'
Pantograph::Helper::DotenvHelper.load_dot_env(env)
started = Time.now
e = nil