aboutsummaryrefslogtreecommitdiff
path: root/beku.go
AgeCommit message (Collapse)Author
39 hours[wip] all: implement function to install Go toolsdevShulhan
2025-07-06all: replace module github.com/shuLhan/share with pakakeh.goShulhan
2022-02-01all: remove the flag vendorShulhan
Since vendoring is already handled by Go module, we remove this feature to minimize duplication.
2019-06-18all: update package share from v0.6.1 to v0.7.0Shulhan
This update bring new change on how to use the ini package.
2019-03-30beku: use lowercase on first letter of error messageShulhan
2018-12-14all: skip linter error on global variablesShulhan
Some global variables, like defStdout and defStdout, are required for testing.
2018-09-14Remove unused variablesShulhan
2018-09-14Get and save package remote branch in databaseShulhan
Some package does not have "master" branch. This will minimize parsing and filter operation to get default branch before checking out revision.
2018-09-14Replace local debug variable with debug packageShulhan
2018-06-04[chore] Add copyright informationShulhan
2018-06-04Add common option "-V, --vendor" to work with vendor directoryShulhan
2018-06-04[chore] Add context to debug outputShulhan
Each debug statement is prefixed with "[X] func" where X is either ENV for debug in environment's methods or PKG for debug in package's methods.
2018-06-03NewPackage(): use golang tools/go/vcs to get remote URLShulhan
This will allow beku to handle custom import URL.
2018-06-03env.install(): change confirmation message for cleaning non-empty directoryShulhan
2018-05-30package: GoInstall: set default PATH if it's emptyShulhan
2018-05-29Add operation to exclude package from databaseShulhan
2018-05-26Change default database file name from "gopath.deps" to "beku.db"Shulhan
2018-05-21Use filepath.Join when applicableShulhan
2018-05-21package.gitClone: return error if destination directory is not emptyShulhan
2018-05-19Add remove operationShulhan
2018-05-18Env: save GOPATH "bin" and "pkg" directoriesShulhan
2018-05-17Change git compare from using browser to using "git log"Shulhan
Also, * add unit test for gitCompareVersion * use defined variable for standard output and error so we can use it on testing
2018-05-16Add package synchronize operation (--sync,-S)Shulhan