www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 5b0c1db73df7054e701a177cb83704b907597bed
parent 08ebe7d3934169cf6ee6de15ebbb85269a2edb12
Author: Suzanne Soy <ligo@suzanne.soy>
Date:   Mon,  8 Mar 2021 18:50:10 +0000

install.sh Support single leading tilde in prefix (without using eval)

Diffstat:
Minstall.sh | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/install.sh b/install.sh @@ -46,6 +46,9 @@ while true; do -p|--prefix) shift PREFIX=$1 + if test "x$PREFIX" != "x${PREFIX#\~/}"; then + PREFIX="$HOME/${PREFIX#\~/}" + fi ;; --system-wlroots) USE_SYSTEM_WLROOTS=enabled