Skip to content

Commit

Permalink
chore: Remove line comments for good measure, just in case its a pars…
Browse files Browse the repository at this point in the history
…ing error on the fastfile being masked by other things
  • Loading branch information
othyn committed Jul 14, 2023
1 parent 9ec9d7b commit f416be8
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ platform :mac do
)

# https://github.com/advoryanskiy/fastlane-plugin-dmg
dmg(path: "../macos-auto-clicker/build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true, # optional, default is true
size: 10) # in megabytes, optional, by default will be calculated as input folder size + 10%
dmg(path: "../macos-auto-clicker/build/AutoClicker.app",
output_path: "../build/AutoClicker.dmg",
volume_name: "AutoClicker",
filesystem: "hfs+",
format: "udzo",
create_applications_symlink: true,
size: 10)
end

lane :beta do
Expand Down Expand Up @@ -93,13 +93,13 @@ platform :mac do
)

# https://github.com/advoryanskiy/fastlane-plugin-dmg
dmg(path: "../macos-auto-clicker/build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true, # optional, default is true
size: 10) # in megabytes, optional, by default will be calculated as input folder size + 10%
dmg(path: "../macos-auto-clicker/build/AutoClicker.app",
output_path: "../build/AutoClicker.dmg",
volume_name: "AutoClicker",
filesystem: "hfs+",
format: "udzo",
create_applications_symlink: true,
size: 10)

# https://docs.fastlane.tools/actions/set_github_release/#set_github_release
set_github_release(
Expand Down Expand Up @@ -195,13 +195,13 @@ platform :mac do
)

# https://github.com/advoryanskiy/fastlane-plugin-dmg
dmg(path: "../macos-auto-clicker/build/AutoClicker.app", # required
output_path: "../build/AutoClicker.dmg", # optional, by default will be at the same location as 'myapp' folder
volume_name: "AutoClicker", # optional, by default will be the same as input folder name
filesystem: "hfs+", # optional, default is 'hfs+'
format: "udzo", # optional, default is 'udzo'
create_applications_symlink: true, # optional, default is true
size: 10) # in megabytes, optional, by default will be calculated as input folder size + 10%
dmg(path: "../macos-auto-clicker/build/AutoClicker.app",
output_path: "../build/AutoClicker.dmg",
volume_name: "AutoClicker",
filesystem: "hfs+",
format: "udzo",
create_applications_symlink: true,
size: 10)

# https://docs.fastlane.tools/actions/set_github_release/#set_github_release
set_github_release(
Expand Down

0 comments on commit f416be8

Please sign in to comment.