Skip to content

Commit f389724

Browse files
authored
Merge pull request #97 from sambrightman/emacs-26-pretest
Fix typo in git command
2 parents 143c3d0 + 28c45f7 commit f389724

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/evm/git.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def exist?
88
File.exist?(@path)
99
end
1010

11-
def clone(url, branch=nil)
11+
def clone(url, branch = nil)
1212
args = 'clone', url, @path
1313
args << "--branch=#{branch}" if branch
1414
git(*args)

recipes/emacs-26-pretest.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
recipe 'emacs-26-pretest' do
2-
git 'http://git.savannah.gnu.org/r/emacs.git --branch emacs-26.0.90'
2+
git 'http://git.savannah.gnu.org/r/emacs.git', 'emacs-26.0.90'
33

44
osx do
55
option '--with-ns'

0 commit comments

Comments
 (0)