Skip to content

Instantly share code, notes, and snippets.

@CoreyWycliffe
CoreyWycliffe / install_git_lfs.sh
Last active May 31, 2019 17:19 — forked from tkafka/install_git_lfs.sh
Compile and Install git-lfs on Raspberry Pi (with golang compilation)
install_git_lfs()
{
set -e
# Get out if git-lfs is already installed
if $(git-lfs &> /dev/null); then
echo "git-lfs is already installed"
return
fi
GIT_LFS_BUILD=$HOME/.bin