Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix to container.upload()'s behavior
container.upload() previously only uploaded the contents of a specified directory path to the container. It now uploads the file or directory pointed to by the specified path. Example before: container.upload(test.png) would not upload the file as it would need a directory path. Example before: container.upload(test/) would upload the contents of the test directory Example after: container.upload(test.png) uploads the file test.png and container.upload(test/) uploads the entire test directory
- Loading branch information