minor cleanup / doc fixes

This commit is contained in:
AJ ONeal
2020-10-21 19:18:52 +00:00
parent 912e60899b
commit a6dd2c0184
4 changed files with 1 additions and 7 deletions

View File

@@ -6,7 +6,6 @@ var repo = 'dotenv';
module.exports = function (request) {
return github(request, owner, repo).then(function (all) {
// remove checksums and .deb
return all;
});
};

View File

@@ -6,7 +6,6 @@ var repo = 'gitdeploy';
module.exports = function (request) {
return github(request, owner, repo).then(function (all) {
// remove checksums and .deb
return all;
});
};

View File

@@ -94,10 +94,6 @@ pkg_post_install() {
echo stringer
"$pkg_dst_cmd" get golang.org/x/tools/cmd/stringer@latest > /dev/null #2>/dev/null
echo ""
echo golangci-lint
"$pkg_dst_cmd" get github.com/golangci/golangci-lint/cmd/golangci-lint@latest > /dev/null #2>/dev/null
echo ""
}

View File

@@ -29,7 +29,7 @@
go get golang.org/x/tools/cmd/gotype@latest > /dev/null #2>/dev/null
echo -n "golangci-lint: "
go get github.com/golangci/golangci-lint/cmd/golangci-lint@master > /dev/null #2>/dev/null
go get github.com/golangci/golangci-lint/cmd/golangci-lint@latest > /dev/null #2>/dev/null
# Community Tooling
echo -n "fillstruct: "