a8m / a8m/envsubst

Update download URL to always use "latest" release

オープン
#65 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る
主要言語
Go
スター
907
フォーク
96
PR マージ指標
30日以内にマージされた PR はありません

説明

Minor adjustment to README.md; removes the need to update the URL whenever a new release is made.

Currently the instructions read:
```sh
curl -L https://github.com/a8m/envsubst/releases/download/v1.2.0/envsubst-`uname -s`-`uname -m` -o envsubst
chmod +x envsubst
sudo mv envsubst /usr/local/bin
```
which hard-codes the release version number in the URL - currently the "latest" release is 1.4.2, not 1.2.0.

Github has a "latest release" URL feature, so the URL can be rewritten as:
```sh
curl -sL https://github.com/a8m/envsubst/releases/latest/download/envsubst-`uname -s`-`uname -m` -o envsubst
chmod +x envsubst
sudo mv envsubst /usr/local/bin
```
(BTW the curl `-sL` rather than just `-L` will also disable the progress bar; download is so quick progress bar isn't useful/needed.)

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

評価

この issue はまだ評価されていません。

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。