github.com/dolthub/dolt/go@v0.40.5-0.20240520175717-68db7794bea6/performance/utils/dolt_builder/README.md (about)

     1  Dolt builder is a tool for more easily installing dolt binaries.
     2  
     3  It takes Dolt commit shas or tags as arguments
     4  and builds corresponding binaries to a path specified
     5  by `$DOLT_BIN`
     6  
     7  If `$DOLT_BIN` is not set `./doltBin` will be used
     8  
     9  (Optional) set `$DEBUG=true` to run in debug mode
    10  
    11  Example usage:
    12  
    13  ```bash
    14  $ dolt-builder dccba46 4bad226
    15  $ dolt version 0.1
    16  $ dolt version 0.2
    17  ```
    18  
    19  ```bash
    20  $ dolt-builder v0.19.0 v0.22.6
    21  $ dolt version 0.19.0
    22  $ dolt version v0.22.6
    23  ```