Update Makefile: install git-lfs
This commit is contained in:
parent
48e20f5e11
commit
0e03cc10b9
1 changed files with 6 additions and 6 deletions
12
Makefile
12
Makefile
|
@ -8,16 +8,16 @@ all: build
|
|||
.ONESHELL:
|
||||
install:
|
||||
if hash apt-get 2>/dev/null; then
|
||||
sudo apt-get update -qq >/dev/null && sudo apt-get install -qq apt-utils imagemagick python3-pip python3-setuptools gcc
|
||||
sudo apt-get update -qq >/dev/null && sudo apt-get install -qq apt-utils imagemagick python3-pip python3-setuptools gcc git-lfs
|
||||
elif hash pacman 2>/dev/null; then
|
||||
sudo pacman -Syu imagemagick python-pip glibc lib32-glibc gcc --noconfirm
|
||||
sudo pacman -Syu imagemagick python-pip glibc lib32-glibc gcc git-lfs --noconfirm
|
||||
elif hash dnf 2>/dev/null; then
|
||||
sudo dnf install -y ImageMagick python3-pip gcc
|
||||
sudo dnf install -y ImageMagick python3-pip gcc git-lfs
|
||||
else
|
||||
echo -e "Please install Imagemagick, python3-pip and gcc"
|
||||
echo -e "Please install Imagemagick, python3-pip git-lfs and gcc"
|
||||
fi
|
||||
pip3 install wheel --user
|
||||
pip3 install lektor --user
|
||||
pip3 install wheel --user --upgrade
|
||||
pip3 install lektor --user --upgrade
|
||||
|
||||
|
||||
build:
|
||||
|
|
Loading…
Reference in a new issue