Joyce Babu
Joyce Babu
It would be nice to have a mention about the default targets in the README. I was about to post a new issue about the missing targets, but fortunately found...
GitHub supports linking to images within the repository in README file. Might be better to commit the logo too to this repo.
@Hsins I think you have misunderstood my suggestion. I mean that you can commit the `svg` file too to the repository. Then you can link to the commited logo by...
I am also getting the same error with just the following code ``` const nodegit = require('nodegit'); nodegit.Repository.open('./').then(function (repo) { // Inside of this function we have an open repo...
I tried the following code, but it just hangs ``` var SegfaultHandler = require('segfault-handler'); SegfaultHandler.registerHandler("crash.log"); const nodegit = require('nodegit'); nodegit.Repository.open('./').then(function (repo) { // Inside of this function we have an...
Is mine a different issue? Should I create a new GitHub issue?
I am trying to install MariaDB 10.8 with this role by adding the mariadb repository for the version using a pre task. But the role is failing when running task...
I was able to do this on Mac. ``` # Cargo.toml [dependencies] rusqlite = "0.20" time = "0.1.42" openssl-sys = "0.9.48" [features] default = ["sqlcipher"] sqlcipher = ["rusqlite/sqlcipher"] ``` ```...
I was able to compile it by setting `LDFLAGS="-static -lz"`
It is not working when I try to use it in my CI tool. You need to pass `--static` to `pkg-config` to properly get dependencies when building static binary pkg-config...