From: Andrew Dolgov Date: Thu, 23 Aug 2012 19:00:48 +0000 (+0400) Subject: self-update: clarify is_writable check on work_dir X-Git-Tag: 1.6.0~115 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=caeee35fd5b9f240818144f2ddc4cb09fa6675e5;p=tt-rss.git self-update: clarify is_writable check on work_dir --- diff --git a/include/update_self.php b/include/update_self.php index 1a4b0a34..cb3482ab 100644 --- a/include/update_self.php +++ b/include/update_self.php @@ -15,9 +15,12 @@ switch ($step) { case 0: + array_push($log, "Work directory: $work_dir"); if (!is_writable($work_dir) && !is_writable("$parent_dir")) { - array_push($log, "Both current and parent directories should be writable as current user."); + $user = posix_getpwuid(posix_geteuid()); + $user = $user["name"]; + array_push($log, "Both tt-rss and parent directories should be writable as current user ($user)."); $stop = true; break; }