Skip to content

Commit

Permalink
Fix one more reference to /dev/null
Browse files Browse the repository at this point in the history
  • Loading branch information
Keno committed Nov 27, 2012
1 parent 12b36f4 commit 0976783
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/git.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dirty(paths) = !success(`git diff --quiet HEAD -- $paths`)
staged(paths) = !success(`git diff --quiet --cached -- $paths`)
unstaged(paths) = !success(`git diff --quiet -- $paths`)

attached() = success(`git symbolic-ref -q HEAD` > "/dev/null")
attached() = success(`git symbolic-ref -q HEAD` > SpawnNullStream())
branch() = readchomp(`git rev-parse --symbolic-full-name --abbrev-ref HEAD`)

function each_tagged_version()
Expand Down

0 comments on commit 0976783

Please sign in to comment.