diff options
author | Judd Vinet <judd@archlinux.org> | 2005-06-21 03:47:38 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2005-06-21 03:47:38 +0000 |
commit | 8c4c7c7ce6324bf1aa8ffb0b9c5e378d446166ef (patch) | |
tree | 97bc2fcd49cba509ee1d32b9785719bb5f70ccfe | |
parent | bdcdf586bdb095e833084c092d1cb79d3ed63523 (diff) |
fixed a little bug in db-inc - UID is already present
-rw-r--r-- | db-inc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,6 +1,6 @@ -# $Id: db-inc,v 1.1 2005/06/21 03:44:57 judd Exp $ +# $Id: db-inc,v 1.2 2005/06/21 03:47:38 judd Exp $ -UID=`id -u` +[ "$UID" = "" ] && UID=`uid` TMPDIR="/tmp/archpkg.$repoid.$UID" cleanup() { |