[24201] in Source-Commits
/svn/athena r23802 - trunk/athena/bin/athrun
daemon@ATHENA.MIT.EDU (Evan Broder)
Mon May 18 16:37:35 2009
Date: Mon, 18 May 2009 16:37:26 -0400
From: Evan Broder <broder@MIT.EDU>
Message-Id: <200905182037.n4IKbQZR009181@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: broder
Date: 2009-05-18 16:37:25 -0400 (Mon, 18 May 2009)
New Revision: 23802
Modified:
trunk/athena/bin/athrun/bash_completion
Log:
In athrun's bash_completion: You can never have enough quotes.
Modified: trunk/athena/bin/athrun/bash_completion
===================================================================
--- trunk/athena/bin/athrun/bash_completion 2009-05-18 20:34:23 UTC (rev 23801)
+++ trunk/athena/bin/athrun/bash_completion 2009-05-18 20:37:25 UTC (rev 23802)
@@ -10,7 +10,7 @@
opts="$(ls /mit)"
;;
2)
- opts="$(ls $(athdir "/mit/$prev" bin))"
+ opts="$(ls "$(athdir "/mit/$prev" bin)")"
;;
esac
COMPREPLY=($(compgen -W "${opts}" -- "${cur}"))