1
0
mirror of https://github.com/minio/mc.git synced 2025-11-13 12:22:45 +03:00
Commit Graph

22 Commits

Author SHA1 Message Date
Harshavardhana
3caee383f0 Migrate to govendor to avoid limitations of godep
- over the course of a project history every maintainer needs to update
  its dependency packages, the problem essentially with godep is manipulating
  GOPATH - this manipulation leads to static objects created at different locations
  which end up conflicting with the overall functionality of golang.

  This also leads to broken builds on many platforms. There is no easier way out of
  this other than asking users to do 'godep restore' all the time which perhaps as
  a practice doesn't sound clean, also has its own set of problems.

- govendor on the other hand is a right tool but a stop gap tool until we wait for
  golangs official 1.5 version which fixes this vendoring issue once and for all.

- govendor makes sure that the import paths are re-written instead of manipulating
  GOPATH.

  This has advantages
    - no more compiled objects being referenced in GOPATH and build time GOPATH
      manging which leads to conflicts.
    - proper import paths referencing the exact package a project is dependent on.

  govendor is simple and provides the minimal necessary tooling to achieve this.

  For now this is the right solution.
2015-08-12 19:04:16 -07:00
Harshavardhana
25e5ea2574 Move to server package for probe 2015-08-10 19:49:57 -07:00
Harshavardhana
c97c2a77b5 Move testing into its own <package>_test, add probe.NewError() new changes 2015-08-08 11:16:36 -07:00
Harshavardhana
202f9e7646 Probe moves closer to mc, also brings in changes by avoiding it behave like an error interface{} 2015-08-07 00:53:37 -07:00
Harshavardhana
b6a2e5c4af Add diff json 2015-08-04 21:41:26 -07:00
Harshavardhana
e7dab5f1cf Migrating from iodine to probe 2015-08-03 11:04:34 -07:00
Harshavardhana
e8a5e68e3c Fix broken diff behavior - using absolute URL's is wrong, use relative instead 2015-07-31 12:42:52 -07:00
Harshavardhana
ddf5c7bccc Add cursor animation for diff command 2015-07-30 21:23:56 -07:00
Harshavardhana
fa27eb71e4 Diff now has recursive listing and matching based on patricia trie 2015-07-30 20:44:56 -07:00
Harshavardhana
25ada41480 Implement NewIodine() in a simpler way 2015-07-15 18:39:17 -07:00
Harshavardhana
8fa80fbf37 Revert "Add mc top level error handling without printing stack traces."
This reverts commit ab4f64b5e3.
2015-07-15 17:25:42 -07:00
Harshavardhana
ab4f64b5e3 Add mc top level error handling without printing stack traces. 2015-07-15 16:53:28 -07:00
Harshavardhana
98a5cf648b Move diff also away from prefixed url 2015-06-06 21:49:50 -07:00
Harshavardhana
0674ce8085 Command diff now properly supports recursive diff 2015-05-26 19:21:58 -07:00
Harshavardhana
192285c2af Remove console to depend on its own structures, instead let it deal with interface{} 2015-05-24 12:58:30 -07:00
Harshavardhana
429ff61174 Fix missing work from diff command 2015-05-22 18:40:46 -07:00
Harshavardhana
d04f63c9eb Break diff into simpler functions 2015-05-21 20:40:14 -07:00
Harshavardhana
fffb947e66 Fix diff handling of non-existant files from source and target 2015-05-21 20:32:29 -07:00
Harshavardhana
26fbc3bc20 Change closed brackets to quote characters and remove brackets for Reason 2015-05-20 20:51:44 -07:00
Harshavardhana
bb374980eb Remove frivolous newlines from diff 2015-05-20 11:16:50 -07:00
Harshavardhana
dcccafacbe Simplify listing recursively into one function, diff now supports <filename> <directory> style 2015-05-20 02:44:15 -07:00
Harshavardhana
c8a60e3781 Change diff command properly to send messages over channels 2015-05-20 00:56:10 -07:00