aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
44 hours[wip] all: implement function to install Go toolsdevShulhan
2022-02-01all: remove the flag vendorShulhan
Since vendoring is already handled by Go module, we remove this feature to minimize duplication.
2022-01-30all: replace beku_test in testdata with gitsubmoduleShulhan
Previously, the beku_test is bare clone of git repository stored as is. This cause an initial clone of the beku repository itself does not recognize it as git repository, which make the test fail: go test -v -coverprofile=cover.out ./... || rm -f cover.out fatal: '/home/ms/go/src/git.sr.ht/~shulhan/beku/testdata/beku_test.git' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 2022/01/30 10:56:19 gitInstall: Clone: exit status 128 FAIL github.com/shuLhan/beku 0.008s This changes make the testdata/beku_test.git as git submodule, to make the test run well.
2018-09-11Update documentation to match with current implementationShulhan
Also, auto formatting by prettier.
2018-07-03Update CHANGELOG and READMEShulhan
2018-07-03Remove govendor vendor toolShulhan
It cannot handle transitive dependencies when building Consul [1] [1] https://github.com/kardianos/govendor/issues/348
2018-06-06Update readme and changelogShulhan
2018-06-05Add option to disable installing dependenciesShulhan
2018-06-04[chore] Update READMEShulhan
2018-06-04Add common option "-V, --vendor" to work with vendor directoryShulhan
2018-06-04Sync(): install missing dependenciesShulhan
2018-05-30Add option "--noconfirm" to by pass confirmationShulhan
2018-05-29Add operation to exclude package from databaseShulhan
2018-05-27Implement freeze operationShulhan
Freeze operation operate on the package database and GOPATH. This operation will ensure that all packages listed on database file is installed with their specific version on GOPATH. Also, all packages that are not registered will be removed from GOPATH "src" and "pkg" directories.
2018-05-27README: add git v2.17.0 as known limitationShulhan
2018-05-27Implement sync option to update all packagesShulhan
2018-05-26Change default database file name from "gopath.deps" to "beku.db"Shulhan
2018-05-24cmd/beku: refactoring parsing flagsShulhan
2018-05-22Implement option (-s,--recursive) to remove package with dependenciesShulhan
2018-05-19Add remove operationShulhan
2018-05-19Implement package query operation.Shulhan
2018-05-18Add readme fileShulhan