9 lines
289 B
Bash
Executable file
9 lines
289 B
Bash
Executable file
#! /usr/bin/sh
|
|
|
|
projdir="$(systemd-path user)"/Projects
|
|
mkdir --parents "${projdir}"
|
|
rm --force --recursive "${projdir}/lilypond"
|
|
cd "${projdir}" || exit
|
|
git clone --depth=1 https://github.com/lilypond/lilypond
|
|
cd lilypond || exit
|
|
python3 scripts/build/lilypond-words.py --el --dir=elisp/
|