mirror of
https://github.com/alexanderepstein/Bash-Snippets
synced 2018-11-08 02:59:35 +01:00
Fixing where manpage is installed for linuxbrew
This commit is contained in:
parent
b8101c080f
commit
b883adb873
1 changed files with 3 additions and 2 deletions
|
@ -66,7 +66,7 @@ copyManpage()
|
|||
if [[ "$(uname)" == "Darwin" ]]; then
|
||||
manPath="$prefix/share/man/man1"
|
||||
else
|
||||
manPath="/usr/local/man/man1"
|
||||
manPath="$prefix/man/man1"
|
||||
fi
|
||||
cp bash-snippets.1 $manPath 2>&1 || { echo "Failure"; echo "Error copying file, try running install script as sudo"; exit 1; }
|
||||
}
|
||||
|
@ -75,7 +75,8 @@ response=$( echo "$@" | grep -Eo "\-\-prefix")
|
|||
|
||||
if [[ $response == "--prefix" ]]; then
|
||||
prefix=$(echo -n "$@" | sed -e 's/--prefix=\(.*\) .*/\1/' | cut -d " " -f 1)
|
||||
mkdir -p $prefix/bin $prefix/share/man/man1
|
||||
if [[ "$(uname)" == "Darwin" ]]; then mkdir -p $prefix/bin $prefix/share/man/man1
|
||||
else mkdir -p $prefix/bin $prefix/man/man1; fi
|
||||
if [[ $2 == "all" ]];then
|
||||
for tool in "${tools[@]}"; do
|
||||
singleInstall $tool || exit 1
|
||||
|
|
Loading…
Reference in a new issue