12 lines
322 B
Bash
Executable file
12 lines
322 B
Bash
Executable file
#! /usr/bin/bash
|
|
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
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/
|