./install.sh failure

The Growl forums have moved to Google Groups, this forum is read only.
Locked
Sfiera
Harmless
Posts: 4
Joined: Thu Sep 29, 2005 2:05 pm

./install.sh failure

Post by Sfiera »

The install.sh files (or at least growlnotify's) shipped with Growl need to be run as root. I didn't realize this at first and was told simultaneously that I lacked permission to install, and that the installation was succcessful. The install script should really look something like this:

Code: Select all

#!/bin/sh
cp growlnotify /usr/local/bin/growlnotify && \
cp growlnotify.1 /usr/local/man/man1/growlnotify.1 && \
echo "Installation complete. Please add /usr/local/bin to your PATH if you have not already. Consult your shell's documentation if you do not know how to do this." || \
echo "Couldn't install. Please run `sudo ./install.sh`"
User avatar
The_Tick
Cocoaforge Admin
Posts: 4642
Joined: Thu Dec 02, 2004 6:06 am
Contact:

Post by The_Tick »

The readme does say to run this as root or sudo right?
Locked