Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: install one directory higher up the tree
The Shorebird archive file contains a whole file tree with `/bin`, so it does not make sense to install the whole archive contents in `/bin`. The following illustrates the structure of the archive: ```shell shorebird-0.21.1 ├── AUTHORS ├── COPYRIGHT ├── LICENSE-APACHE ├── LICENSE-MIT ├── NOTES_ON_CODEPUSH.md ├── README.md ├── RELEASE_NOTES.md ├── TRUSTED_TESTERS.md ├── analysis_options.yaml ├── bin │ ├── internal │ ├── shorebird │ ├── shorebird.bat │ └── shorebird.ps1 ├── generate_combined_coverage.sh ├── packages │ ├── artifact_proxy │ ├── discord_gcp_alerts │ ├── jwt │ ├── redis_client │ ├── scoped │ ├── shorebird_cli │ ├── shorebird_code_push_client │ └── shorebird_code_push_protocol ├── scripts │ ├── bootstrap.sh │ └── patch_e2e.sh └── third_party ├── README.md └── flutter ```
- Loading branch information