Use long option names for commands
This commit is contained in:
parent
c349ad7738
commit
8ca04dec25
4 changed files with 5 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
|||
#! /usr/bin/sh
|
||||
|
||||
sudo mkdir -p "${BORG_REPO}"
|
||||
sudo mkdir --parents "${BORG_REPO}"
|
||||
sudo chown "${USER}":"${USER}" "${BORG_REPO}"
|
||||
sudo chmod 700 "${BORG_REPO}"
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue