Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Implement review feedback from #13 #14

Merged
merged 1 commit into from
Sep 6, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func realMain() int {

// Determine the exe path and parse the configuration if given.
var cfg config.Config
var exePaths []string
exePaths := args[:1]
if len(args) > 1 {
exePaths = args[1:]

Expand All @@ -69,8 +69,6 @@ func realMain() int {

// Store the config and set it on the output
cfg = *c
} else {
exePaths = args[:1]
}

allMods := map[module.Module]struct{}{}
Expand Down