Junpei Kawamoto
Junpei Kawamoto
Since [go-bindata](https://github.com/jteeuwen/go-bindata) is no more maintained, we should switch to another library to embed tamplates. These are the candidates: - https://github.com/rakyll/statik - https://github.com/shurcooL/vfsgen
It's helpful if we can compare the original error without casting. For example, this usually happens in our use case: ```go // An API call returns an error. err :=...
`encodeError` cannot provide `${key}Verbose` and `${key}Causes` fields if the error implements `fmt.Formatter` and/or `errorGroup` interfaces but is wrapped. This change uses `errors.As` instead of a type switch to check if...
poetry build command fails because there isn't `doc` directory. This PR fixes this problem.
From this doc https://docs.aws.amazon.com/sdk-for-go/api/service/s3/#Error, the server returns `NoSuchKey` error if a removing object doesn't exist. This PR fixes the issue and also update the binaries.
When I try to install a DLL by the following script in a custom NSIS script ``` !macro customInstall !include Library.nsh !define LIBRARY_X64 !insertmacro InstallLib REGDLL NOTSHARED REBOOT_NOTPROTECTED $BUILD_RESOURCES_DIR/somelib.dll $SYSDIR\somelib.dll...
It seems nice that other scripts can import and use data_hacks functions. This pull request adds `__init__.py` to make it a package, and adds option classes. This PR also modifies...