From 309cf80e163eac8ea72303d6566a562f9a0347a3 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 5 Feb 2024 19:01:50 -0600 Subject: `git ls-files` Signed-off-by: Jeff Carr --- gitConfig.go | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'gitConfig.go') diff --git a/gitConfig.go b/gitConfig.go index e7c581b..05e8d53 100644 --- a/gitConfig.go +++ b/gitConfig.go @@ -222,6 +222,16 @@ func (rs *RepoStatus) CheckPrimativeGoMod() bool { return true } +func (rs *RepoStatus) GitLsFiles() (bool, string) { + err, output := rs.RunCmd([]string{"git", "ls-files"}) + if err != nil { + log.Warn("git ls-files failed err =", err) + log.Warn("git ls-files failed output =", output) + return false, output + } + return true, output +} + // readGoMod reads and parses the go.sum file (TODO: do the go.mod file) func (rs *RepoStatus) ReadGoMod() bool { if rs.CheckPrimativeGoMod() { -- cgit v1.2.3