Skip to content

Commit

Permalink
Work directory unique per user
Browse files Browse the repository at this point in the history
  • Loading branch information
cherio committed Sep 22, 2023
1 parent fca92d0 commit 043a37b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pacbro.pl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
my $fzfx = exe_path('fzf') // die("Please install fzf\n");
my $yayx = exe_path('yay');
my $progname = ($0 =~ m{(?:^|/)([^/]+?)(?:\.\w+)?$}s) ? $1 : die("Bad program name: $0\n");
my $work_dir = "/tmp/$progname";
my $work_dir = "/tmp/$progname-$ENV{USER}";
my $sess_code = "$progname-$$";
my $tumx_cmd = "$tmux_exe -L $sess_code";
my $log_fname = "$work_dir/app.log"; # global log
Expand Down

0 comments on commit 043a37b

Please sign in to comment.