This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# <img src="https://cdn.jsdelivr.net/gh/brogers5/chocolatey-package-messenger@11eade7e5c9cf02a523fc1a90c744a146ba806b7/messenger.png" width="48" height="48"/> Chocolatey Package: [Messenger](https://community.chocolatey.org/packages/messenger/) | ||
|
||
[![Chocolatey package version](https://img.shields.io/chocolatey/v/messenger.svg)](https://community.chocolatey.org/packages/messenger/) | ||
[![Chocolatey package download count](https://img.shields.io/chocolatey/dt/messenger.svg)](https://community.chocolatey.org/packages/messenger/) | ||
|
||
## Install | ||
|
||
[Install Chocolatey](https://chocolatey.org/install), and run the following command to install the latest approved version on the Chocolatey Community Repository: | ||
|
||
```shell | ||
choco install messenger | ||
``` | ||
|
@@ -15,7 +18,9 @@ choco install messenger --source="'.;https://community.chocolatey.org/api/v2/'" | |
``` | ||
|
||
## Build | ||
|
||
[Install Chocolatey](https://chocolatey.org/install), clone this repository, and run the following command in the cloned repository: | ||
|
||
```shell | ||
choco pack | ||
``` | ||
|
@@ -25,14 +30,17 @@ A successful build will create `messenger.x.y.z.nupkg`, where `x.y.z` should be | |
Note that Chocolatey package builds are non-deterministic. Consequently, an independently built package will fail a checksum validation against officially published packages. | ||
|
||
## Update | ||
|
||
This package should be automatically updated by the [Chocolatey Automatic Package Updater Module](https://github.com/majkinetor/au). If it is outdated by more than a few days, please [open an issue](https://github.com/brogers5/chocolatey-package-messenger/issues). | ||
|
||
AU expects the parent directory that contains this repository to share a name with the Nuspec (`messenger`). Your local repository should therefore be cloned accordingly: | ||
|
||
```shell | ||
git clone [email protected]:brogers5/chocolatey-package-messenger.git messenger | ||
``` | ||
|
||
Alternatively, a junction point can be created that points to the local repository (preferably within a repository adopting the [AU packages template](https://github.com/majkinetor/au-packages-template)): | ||
|
||
```shell | ||
mklink /J messenger ..\chocolatey-package-messenger | ||
``` | ||
|