File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -151,6 +151,9 @@ install_package pkg-config
151
151
# somewhat frequently when working with gRPC
152
152
install_package protobuf-compiler
153
153
154
+ # Also install `cmake` which is required for building some packages from source
155
+ install_package cmake
156
+
154
157
# Remove pyenv if it exists
155
158
if [ -d "$HOME/.pyenv" ]; then
156
159
echo "Removing pyenv..."
229
232
# Install LazyGit
230
233
if ! command -v lazygit &> /dev/null; then
231
234
echo "Installing LazyGit..."
232
- LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | grep -Po '"tag_name": "v\K[^"]*')
235
+ LAZYGIT_VERSION=$(curl -s "https://api.github.com/repos/jesseduffield/lazygit/releases/latest" | rg -Po '"tag_name": "v\K[^"]*')
233
236
curl -Lo lazygit.tar.gz "https://github.com/jesseduffield/lazygit/releases/latest/download/lazygit_${LAZYGIT_VERSION}_Linux_x86_64.tar.gz"
234
237
tar xf lazygit.tar.gz lazygit
235
238
sudo install lazygit /usr/local/bin
You can’t perform that action at this time.
0 commit comments