Skip to content

Commit

Permalink
Support custom output path
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlocke committed Oct 3, 2024
1 parent f49a504 commit 21d6eed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions generate_base_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def main():
dropbox_objc_shim_output_path = 'Source/SwiftyDropboxObjCShim/Shared/Generated'
dropbox_pkg_path = args.output_path if args.output_path else dropbox_default_output_path
dropbox_objc_pkg_path = args.output_path if args.output_path else dropbox_objc_output_path
dropbox_objc_shim_output_path = args.output_path if args.output_path else dropbox_objc_shim_output_path

# we run stone generation relative to the stone module,
# so we make our output path absolute here so it's relative to where we are called
Expand Down

0 comments on commit 21d6eed

Please sign in to comment.