1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 16:07:24 +08:00

Update plist path to work with newer fastlane version

It seems they have fixed the working/current directory and the
parent traversal is no longer required.
This commit is contained in:
Dean Herbert 2020-08-20 12:23:39 +09:00
parent 5714c761eb
commit ff0dec3dd9

View File

@ -113,7 +113,7 @@ platform :ios do
souyuz(
platform: "ios",
plist_path: "../osu.iOS/Info.plist"
plist_path: "osu.iOS/Info.plist"
)
end
@ -127,7 +127,7 @@ platform :ios do
end
lane :update_version do |options|
options[:plist_path] = '../osu.iOS/Info.plist'
options[:plist_path] = 'osu.iOS/Info.plist'
app_version(options)
end