In my .ubhrc, I've got:
TEMPDIR=/tmp/.ubh
I removed this directory accidentally about a week ago, and my ubh runs have been failing ever since.
(Thanks!)
Logged In: YES user_id=175353
Ah ha .. here's the problem:
(ver 2.6b1, line ~1992) :
# Ensure temp subdirectory exists. if ($opt{'A'} && ! -d $platform->get_tempdir) { mkdir($platform->get_tempdir, $perms) or die "ERROR: mkdir(".$platform->get_tempdir.") failed: $!\n"; }
I do not have OPT A specified, but for whatever reason, I still need a tempdir. Easy fix is to remove the $opt{A} test.
Log in to post a comment.
Logged In: YES
user_id=175353
Ah ha .. here's the problem:
(ver 2.6b1, line ~1992) :
# Ensure temp subdirectory exists.
if ($opt{'A'} && ! -d $platform->get_tempdir) {
mkdir($platform->get_tempdir, $perms)
or die "ERROR: mkdir(".$platform->get_tempdir.")
failed: $!\n";
}
I do not have OPT A specified, but for whatever reason, I
still need a tempdir. Easy fix is to remove the $opt{A}
test.