Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-04-27 | astyle format | Ben Burdette | |
2020-04-26 | error.hh | Ben Burdette | |
2020-04-25 | print dashes instead of empty name string | Ben Burdette | |
2020-04-24 | don't print blank lines for blank description | Ben Burdette | |
2020-04-24 | all things error to error.hh | Ben Burdette | |
2020-04-24 | add has_value check; remove obslete friend class | Ben Burdette | |
2020-04-23 | 'what' string | Ben Burdette | |
2020-04-22 | a few more 'format's rremoved | Ben Burdette | |
2020-04-21 | remove 'format' from Error constructor calls | Ben Burdette | |
2020-04-21 | add ErrorInfo to BaseError | Ben Burdette | |
2020-04-19 | logEI for tunnelLogger and progressbar | Ben Burdette | |
2020-04-17 | demoing other error levels than warn/error; rename line and file fields in ↵ | Ben Burdette | |
errPos | |||
2020-04-17 | logError, logWarning; Logger functions; switch to Verbosity enum | Ben Burdette | |
2020-04-16 | iomanip no longer needed | Ben Burdette | |
2020-04-16 | switch to structs, which don't need public: | Ben Burdette | |
2020-04-15 | move implementation to cc | Ben Burdette | |
2020-04-15 | Merge branch 'initializer-style' into error-format | Ben Burdette | |
2020-04-08 | indention | Ben Burdette | |
2020-04-08 | format -> fmt | Ben Burdette | |
2020-04-08 | comments | Ben Burdette | |
2020-04-08 | return of NixCode | Ben Burdette | |
2020-04-08 | initializer style | Ben Burdette | |
2020-04-07 | columnRange -> column | Ben Burdette | |
2020-04-07 | remove columnrange; switch to fmt in error.cc | Ben Burdette | |
2020-04-06 | comment cleanup | Ben Burdette | |
2020-04-06 | constructor style basically working | Ben Burdette | |
2020-04-06 | ignore error-demo | Ben Burdette | |
2020-04-06 | add libutil, libexpr include dirs | Ben Burdette | |
2020-04-06 | Merge branch 'master' into error-format | Ben Burdette | |
2020-04-06 | Merge pull request #3474 from cole-h/error-on-unsupported-protocol | Eelco Dolstra | |
Don't retry on "unsupported protocol" error | |||
2020-04-05 | Don't retry on "unsupported protocol" error | Cole Helbling | |
When encountering an unsupported protocol, there's no need to retry. Chances are, it won't suddenly be supported between retry attempts; error instead. Otherwise, you see something like the following: $ nix-env -i -f git://git@github.com/foo/bar warning: unable to download 'git://git@github.com/foo/bar': Unsupported protocol (1); retrying in 335 ms warning: unable to download 'git://git@github.com/foo/bar': Unsupported protocol (1); retrying in 604 ms warning: unable to download 'git://git@github.com/foo/bar': Unsupported protocol (1); retrying in 1340 ms warning: unable to download 'git://git@github.com/foo/bar': Unsupported protocol (1); retrying in 2685 ms With this change, you now see: $ nix-env -i -f git://git@github.com/foo/bar error: unable to download 'git://git@github.com/foo/bar': Unsupported protocol (1) | |||
2020-04-05 | libexpr | Ben Burdette | |
2020-04-03 | move out of tests/ | Ben Burdette | |
2020-04-03 | handle Pos instead of individual file/line/columnrange args | Ben Burdette | |
2020-04-03 | Publish a tarball containing the crates we depend on | Eelco Dolstra | |
This is needed since we no longer produce a source tarball. (cherry picked from commit bf70a047a0b2da606f65a88f13ce2994065cd9c4) | |||
2020-04-03 | nix-env: Refuse to operate on a new-style profile | Eelco Dolstra | |
This prevents users from accidentally nuking their profile via nix-env. (cherry picked from commit 021634e3e3edb327089d33ab41b743f0a40126da) | |||
2020-04-03 | variadic args for hint format | Ben Burdette | |
2020-04-03 | Merge pull request #3470 from andir/remove-unusued-attrError | Eelco Dolstra | |
libexpr: remove unused attrError | |||
2020-04-02 | formatted with astyle | Ben Burdette | |
2020-04-02 | indenting | Ben Burdette | |
2020-04-02 | full include path | Ben Burdette | |
2020-04-02 | libexpr: remove unused attrError | Andreas Rammhold | |
The attrError variable is no longer used but still allocated on every call to the findAlongAttrPath function. | |||
2020-04-01 | using std:: everywhere; fix a formatting error; add exception flags | Ben Burdette | |
2020-04-01 | indenting | Ben Burdette | |
2020-04-01 | remove using std::*, switch to include guard | Ben Burdette | |
2020-03-31 | examples of invalid errors | Ben Burdette | |
2020-03-31 | add some explanatory comments | Ben Burdette | |
2020-03-31 | rename errors/warnings | Ben Burdette | |
2020-03-31 | enum style | Ben Burdette | |
2020-03-31 | Merge pull request #3460 from NixOS/dev-shell | Eelco Dolstra | |
Backport 'nix dev-shell' from the flakes branch |