This repository was archived by the owner on Jun 26, 2024. It is now read-only.
This repository was archived by the owner on Jun 26, 2024. It is now read-only.
bindl generate make
targets should verify that Bindl exists #73
Open
Description
The Problem
Usually 1 person will set up Bindl for the project. Other members of the project will only care about the dependency that they're using (i.e. bin/ko
) but won't care for how it's getting downloaded or updated.
The erroneous flow I see is
- I swap a project over to Bindl.
- Teammate tries to install
bin/ko
- Teammate runs into issues since they don't have Bindl.
- Teammate reaches out to me to figure out how to get Bindl to work.
Solving this problem removes a step that will be easily forgotten and explicitly sets Bindl itself as a dependency.
My Current Workaround
I manually modified the generated file that says "DO NOT MODIFY".
One Option I Was Thinking Of
Either through bindl.yaml
or through commandline. I was thinking of an optional flag. The target would need to be defined by the user (unless #13 is implemented).
Current
# THIS FILE WAS GENERATED BY BINDL 0.0.5 (4b5fba05cd01309ca791844d65e97a3309b7ec0d) (go1.18) ON 2022-04-20T22:36:26Z
# DO NOT MODIFY - ANY MODIFICATIONS WILL BE OVERWRITTEN
# For this file to work appropriately, bindl must already be setup in the machine
# through bootstrap or other mechanisms.
BINDL_PROGRAMS?=$(shell bindl list --oneline)
BINDL_PROGRAMS_PATH?=$(addprefix bin/,$(BINDL_PROGRAMS))
.bindl-lock.yaml:
bindl sync
# On the other hand, lockfile is a regular pre-requisite where we would like for
# programs to be re-validated if lockfile was modified, in case the versions have changed.
$(BINDL_PROGRAMS_PATH): .bindl-lock.yaml
bindl get $(@F)
Feature Request
# THIS FILE WAS GENERATED BY BINDL 0.0.5 (4b5fba05cd01309ca791844d65e97a3309b7ec0d) (go1.18) ON 2022-04-20T22:36:26Z
# DO NOT MODIFY - ANY MODIFICATIONS WILL BE OVERWRITTEN
# For this file to work appropriately, bindl must already be setup in the machine
# through bootstrap or other mechanisms.
BINDL_PROGRAMS?=$(shell bindl list --oneline)
BINDL_PROGRAMS_PATH?=$(addprefix bin/,$(BINDL_PROGRAMS))
.bindl-lock.yaml: bin/bindl
bindl sync
# On the other hand, lockfile is a regular pre-requisite where we would like for
# programs to be re-validated if lockfile was modified, in case the versions have changed.
$(BINDL_PROGRAMS_PATH): .bindl-lock.yaml bin/bindl
bindl get $(@F)