Skip to content

Commit

Permalink
ls appends / to dirs instead of +
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Wiggins committed Mar 7, 2008
1 parent 2bb7969 commit 8702559
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rush/dir.rb
Expand Up @@ -127,7 +127,7 @@ def bash(command)
def ls
out = [ "#{self}" ]
nonhidden_dirs.each do |dir|
out << " #{dir.name}+"
out << " #{dir.name}/"
end
nonhidden_files.each do |file|
out << " #{file.name}"
Expand Down

0 comments on commit 8702559

Please sign in to comment.