Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
0286facd
Commit
0286facd
authored
Oct 20, 2020
by
Nick Thomas
Committed by
Jacob Vosmaer
Oct 20, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Run go mod tidy NO CHANGELOG
parent
e62e6191
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
54 deletions
+14
-54
Makefile
Makefile
+12
-1
go.mod
go.mod
+0
-1
go.sum
go.sum
+2
-52
No files found.
Makefile
View file @
0286facd
...
...
@@ -116,7 +116,7 @@ testdata/scratch:
mkdir
-p
testdata/scratch
.PHONY
:
verify
verify
:
lint vet detect-context detect-assert check-formatting staticcheck
verify
:
lint vet detect-context detect-assert check-formatting staticcheck
deps-check
.PHONY
:
lint
lint
:
$(TARGET_SETUP)
...
...
@@ -164,3 +164,14 @@ fmt: $(TARGET_SETUP) install-goimports
install-goimports
:
$(TARGET_SETUP)
$(
call
message,
$@
)
go
install
golang.org/x/tools/cmd/goimports
.PHONY
:
deps-check
deps-check
:
go mod tidy
@
if
git diff
--quiet
--exit-code
--
go.mod go.sum
;
then
\
echo
"go.mod and go.sum are ok"
;
\
else
\
echo
""
;
\
echo
"go.mod and go.sum are modified, please commit them"
;
\
exit
1
;
\
fi
;
go.mod
View file @
0286facd
...
...
@@ -34,7 +34,6 @@ require (
golang.org/x/net v0.0.0-20200602114024-627f9648deb9
golang.org/x/tools v0.0.0-20200608174601-1b747fd94509
google.golang.org/grpc v1.29.1
gopkg.in/yaml.v2 v2.2.8 // indirect
honnef.co/go/tools v0.0.1-2020.1.5
)
...
...
go.sum
View file @
0286facd
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment