Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1022)

Unified Diff: scripts/get_log

Issue 4105005: This fixes a really tiny thing in handling of symbolic links (Closed) Base URL: http://git.chromium.org/git/userfeedback.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/get_log
diff --git a/scripts/get_log b/scripts/get_log
index fd6755306e0aca50cd1ab36bb35d66dc27a2ac68..ff6dc8111871cbc286e2b39af6c1917ed05cdcaa 100755
--- a/scripts/get_log
+++ b/scripts/get_log
@@ -12,7 +12,7 @@ max_lines=${2:-1000}
file=$1
if [ -h "$file" ]; then
- file="$(readlink $file)"
+ file="$(readlink -f $file)"
fi
if [ -r "$file" -a -f "$file" ]; then
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698