Changeset 13261
- Timestamp:
- May 4, 2007, 3:06:27 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/Nebulous/lib/Nebulous/Client/Log.pm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Nebulous/lib/Nebulous/Client/Log.pm
r13259 r13261 1 1 # Copyright (c) 2004 Joshua Hoblitt 2 2 # 3 # $Id: Log.pm,v 1. 5 2007-05-05 00:39:59 jhoblittExp $3 # $Id: Log.pm,v 1.6 2007-05-05 01:06:27 eugene Exp $ 4 4 5 5 package Nebulous::Client::Log; … … 14 14 15 15 sub init { 16 my $log_path = $ENV{HOME} or File::Spec->tmpdir(); 16 my $log_path; 17 if (defined $ENV{HOME}) { 18 $log_path = $ENV{HOME}; 19 } else { 20 $log_path = File::Spec->tmpdir(); 21 } 22 # my $log_path = $ENV{HOME} or File::Spec->tmpdir(); 17 23 18 24 my $conf = <<END;
Note:
See TracChangeset
for help on using the changeset viewer.
