esconj

Conjugates Spanish verbs in the terminal
git clone git://mattcarlson.org/repos/esconj.git
Log | Files | Refs | README

commit 6b3540f8aac9c964b6f2add815e57457dca9db5a
parent 1aa146759428e938e92300d89a561cda99f2cac9
Author: Matthew Carlson <matt@mcarlson.xyz>
Date:   Sun, 17 Jul 2022 03:24:10 -0400

lowercase path

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

diff --git a/install.sh b/install.sh @@ -3,12 +3,12 @@ [ "$(id -u)" -ne 0 ] && echo 'Permission denied. Are you root?' && exit 1 DIR='/usr/share/esconj/' -PATH='/usr/bin/' +path='/usr/bin/' mkdir -p "${DIR}" echo "./verbs.csv -> ${DIR}/verbs.csv" cp './verbs.csv' "${DIR}/verbs.csv" -echo "./esconj -> ${PATH}/esconj" -cp './esconj' "${PATH}/esconj" +echo "./esconj -> ${path}/esconj" +cp './esconj' "${path}/esconj" echo 'Installation complete.'