diff options
author | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-19 11:36:50 +0530 |
---|---|---|
committer | Anirudh Oppiliappan <x@icyphox.sh> | 2022-12-19 11:36:50 +0530 |
commit | a05244018ae02603c56a27f8f8b7006c0024f7ea (patch) | |
tree | f01ac8969e4914421c8b7b0e3b1cf9f9b2892546 /git/git.go | |
parent | 8ba1a9609adef8575a91219ef35eef97daad8d32 (diff) | |
download | legit-a05244018ae02603c56a27f8f8b7006c0024f7ea.tar.gz legit-a05244018ae02603c56a27f8f8b7006c0024f7ea.tar.bz2 legit-a05244018ae02603c56a27f8f8b7006c0024f7ea.zip |
git: check for binary files
Diffstat (limited to 'git/git.go')
-rw-r--r-- | git/git.go | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -76,7 +76,13 @@ func (g *GitRepo) FileContent(path string) (string, error) { return "", err } - return file.Contents() + isbin, _ := file.IsBinary() + + if !isbin { + return file.Contents() + } else { + return "Not displaying binary file", nil + } } func (g *GitRepo) Tags() ([]*object.Tag, error) { |