Add current dir at end of path instead of front

This commit is contained in:
Rezart Qelibari
2022-02-27 10:48:26 +02:00
parent db53df3358
commit 803db08906

View File

@@ -6,7 +6,7 @@ function ensureDocopts() {
[ $? -eq 0 ] && return [ $? -eq 0 ] && return
curl --output ./docopts -fsSL https://github.com/astzweig/docopts/releases/download/v.0.7.0/docopts_darwin_amd64 curl --output ./docopts -fsSL https://github.com/astzweig/docopts/releases/download/v.0.7.0/docopts_darwin_amd64
chmod u+x ./docopts chmod u+x ./docopts
PATH="`pwd`:${PATH}" PATH="${PATH}:`pwd`"
} }
function cloneMacOSSystemRepo() { function cloneMacOSSystemRepo() {