From 69e6ba99934d8beb61263417085d0edbd31ddf9e Mon Sep 17 00:00:00 2001 From: Orkhan Date: Tue, 31 May 2022 13:28:52 +0500 Subject: [PATCH] ubuntu install latest version script --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 17a272c..cb3df08 100644 --- a/README.md +++ b/README.md @@ -93,8 +93,9 @@ With valid `source` options as such: **Ubuntu/Debian** ```bash -curl -OL https://github.com/wagoodman/dive/releases/download/v0.9.2/dive_0.9.2_linux_amd64.deb -sudo apt install ./dive_0.9.2_linux_amd64.deb +export DIVE_VERSION=$(wget -qO - "https://api.github.com/repos/wagoodman/dive/releases/latest" | grep '"tag_name":' | sed -E 's/.*"v([^"]+)".*/\1/') +curl -OL https://github.com/wagoodman/dive/releases/download/v${DIVE_VERSION}/dive_${DIVE_VERSION}_linux_amd64.deb +sudo apt install ./dive_${DIVE_VERSION}_linux_amd64.deb ``` **RHEL/Centos**