[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Phpgroupware-developers] Re: phpGroupWare 0.9.16.006 Security Fix R
From: |
Chris Weiss |
Subject: |
Re: [Phpgroupware-developers] Re: phpGroupWare 0.9.16.006 Security Fix Release - correction |
Date: |
Wed, 6 Jul 2005 20:51:20 -0500 |
On 7/6/05, Dave Hall <address@hidden> wrote:
> On Wed, 2005-07-06 at 12:30 -0500, Chris Weiss wrote:
> > while your at it, add an echo to the tarball builder script that says
> > "did you remember to increment the phpgwapi verison?"
> > :)
>
> Not that simple. The same script builds the nightlies :P
>
debian's cron sets TERM=dumb, and doesn't set USERNAME, where a term
client, like ssh, sets TERM=xterm or something else usefull and bash
sets USERNAME.
if [ "$TERM" != "dumb" ]; then
echo "did you remember to increment the phpgwapi verison?"
fi
or use
if [ "$USERNAME" != "" ]; then
which isn't exactly complex :P