harec

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

commit c95a5c1dd72d5714321f9e1682d56de760c1b17b
parent ad59c52f9d2bc138dc98c08e94309514a97b92b4
Author: Drew DeVault <sir@cmpwn.com>
Date:   Mon, 28 Feb 2022 12:53:12 +0100

config.sh: place pwd ahead of $PATH in harec.sh

Signed-off-by: Drew DeVault <sir@cmpwn.com>

Diffstat:
Mconfig.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.sh b/config.sh @@ -192,7 +192,7 @@ EOF touch "$outdir"/cppcache cat <<-EOF >harec.sh - export PATH=\$PATH:"$(pwd)" + export PATH="$(pwd)":\$PATH EOF if [ "$srcdir" = "." ]