Changed formatting and removed random whitespace.

This commit is contained in:
Michael C Tiernan - MIT-Research Computing Project 2022-05-15 15:11:30 -04:00
parent 2738602ba1
commit dd0075735d

View file

@ -172,25 +172,25 @@ case "$OS" in
makewhatis makewhatis
;; ;;
'osx') 'osx')
### - - - - - - - - - - - - - - - - - - - - ### - - - - - - - - - - - - - - - - - - - -
#binary #binary
sudo -v sudo -v
sudo -s -- <<-EOT sudo -s -- <<-EOT
mkdir -m 0555 -p ${binTgtDir} mkdir -m 0555 -p ${binTgtDir}
cp rclone ${binTgtDir}/rclone.new cp rclone ${binTgtDir}/rclone.new
mv ${binTgtDir}/rclone.new ${binTgtDir}/rclone mv ${binTgtDir}/rclone.new ${binTgtDir}/rclone
chmod a=x ${binTgtDir}/rclone chmod a=x ${binTgtDir}/rclone
EOT EOT
### - - - - - - - - - - - - - - - - - - - - ### - - - - - - - - - - - - - - - - - - - -
#manual #manual
sudo -v sudo -v
sudo -s -- <<-EOT sudo -s -- <<-EOT
mkdir -m 0555 -p ${man1TgtDir} mkdir -m 0555 -p ${man1TgtDir}
cp rclone.1 ${man1TgtDir} cp rclone.1 ${man1TgtDir}
chmod a=r ${man1TgtDir}/rclone.1 chmod a=r ${man1TgtDir}/rclone.1
EOT EOT
;; ;;
### - - - - - - - - - - - - - - - - - - - - ### - - - - - - - - - - - - - - - - - - - -
*) *)
echo 'OS not supported' echo 'OS not supported'
exit 2 exit 2