Skip to content

Commit

Permalink
fix: ?????? At this point I'm running out of ideas, 'hdiutil: create …
Browse files Browse the repository at this point in the history
…failed - Function not implemented' is mostly met online with 'we have no idea what the fuck that means'. Why is this build chain so damn fickle?! All this to attempt to close #69, in which the issues popped up out of nowhere anyway
  • Loading branch information
othyn committed Jul 14, 2023
1 parent c004250 commit 9ec9d7b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ platform :mac do
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
create_applications_symlink: true, # optional, default is true
size: 10) # in megabytes, optional, by default will be calculated as input folder size + 10%
end

lane :beta do
Expand Down Expand Up @@ -97,7 +98,8 @@ platform :mac do
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
create_applications_symlink: true, # optional, default is true
size: 10) # in megabytes, optional, by default will be calculated as input folder size + 10%

# https://docs.fastlane.tools/actions/set_github_release/#set_github_release
set_github_release(
Expand Down Expand Up @@ -198,7 +200,8 @@ platform :mac do
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
create_applications_symlink: true, # optional, default is true
size: 10) # in megabytes, optional, by default will be calculated as input folder size + 10%

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

0 comments on commit 9ec9d7b

Please sign in to comment.