Use long option names for commands

This commit is contained in:
Ohad Livne 2025-07-12 22:43:18 +03:00
parent c349ad7738
commit 8ca04dec25
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D
4 changed files with 5 additions and 5 deletions

View file

@ -1,8 +1,8 @@
#! /usr/bin/sh
projdir="$(systemd-path user)"/Projects
mkdir -p "${projdir}"
rm -rf "${projdir}/lilypond"
mkdir --parents "${projdir}"
rm --force --recursive "${projdir}/lilypond"
cd "${projdir}" || exit
git clone --depth=1 https://github.com/lilypond/lilypond
cd lilypond || exit