Tom Payne

Results 193 comments of Tom Payne

Closing due to inactivity.

For info, I have some time to work on this again, but am currently blocked by https://github.com/goreleaser/goreleaser/issues/5069.

Thanks! The issue with bumping major versions is that it requires modifying the source files (i.e. at least updating `import` statements with the new package path, and occasionally modifying code...

Doh! I forgot to set the URLs. Thanks for testing so quickly. PR updated. Please could you try again (I don't have a server to test against).

> Thanks, it works now! Great! Thanks for testing! > Is it possible to have the auth token in a config file rather than polluting my environment? Not a big...

If you run chezmoi with the `--debug` flag I think it will show you the first few bytes of each HTTP download.

Ah, I see, thank you. Can you embed the access token into the external URL, something like (untested): ``` ["my/external"] url = "https://git.example.com:{{ env "CHEZMOI_GIT_EXAMPLE_COM_ACCESS_TOKEN" }}/path/to/archive" ```

OK, thank you again for testing. I suspect that the right solution is that chezmoi should add `Authentication: Bearer $CHEZMOI_GIT_EXAMPLE_COM_ACCESS_TOKEN` headers to all requests to `git.example.com`, but this will require...

I agree that this would be a nice feature. However, there are a couple of difficulties in implementing it: 1. As @halostatue says, `re-add` only works on simple files. 2....

> So `re-add` should only be used with non-template files, you mean? `re-add` can only be used with non-template files, otherwise the template would be overwritten. It's not possible to...