Skip to content

Commit

Permalink
FIXED: "rake" was mapped to "sudo". Closes GH-8 [mjmsmith]
Browse files Browse the repository at this point in the history
  • Loading branch information
delano committed Mar 29, 2010
1 parent e485690 commit 908deca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
RYE, CHANGES

#### 0.8.15 (2010-03-29) #############################

* FIXED: "rake" was mapped to "sudo". Closes GH-8 [mjmsmith]

#### 0.8.14 (2010-02-25) #############################

* FIXED: rye authorize command now logs in to grab the actual homedir.
Expand Down
2 changes: 1 addition & 1 deletion lib/rye/cmd.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def cat(*args); __allow('cat', args); end
def tar(*args); __allow('tar', args); end

#def kill(*args); __allow('kill', args); end
def rake(*args); __allow('sudo', args); end
def rake(*args); __allow('rake', args); end
def sudo(*args); __allow('sudo', args); end
def grep(*args); __allow('grep', args); end
def date(*args); __allow('date', args); end
Expand Down

0 comments on commit 908deca

Please sign in to comment.