summaryrefslogtreecommitdiffstats
path: root/commands/limit_darwin.go
AgeCommit message (Collapse)Author
2019-04-07Adjust rlimit logicBjørn Erik Pedersen
Closes #5821
2018-04-11commands: Move the commands related logic to its own fileBjørn Erik Pedersen
See #4598
2018-04-11commands: Make the hugo command non-globalBjørn Erik Pedersen
See #4598
2018-04-11comands: Make the config command non-globalBjørn Erik Pedersen
See #4598
2018-04-11commands: Make more commands non-globalBjørn Erik Pedersen
See #4598
2017-06-12commands: Adjust rlimit to 64000Bjørn Erik Pedersen
See #3582
2017-06-12commands: Make error on setting rlimit a warning onlyBjørn Erik Pedersen
And reduce it to 10000. Closes #3582
2017-06-12Revert "commands: Remove the rlimit tweaking on macOS"Bjørn Erik Pedersen
This reverts commit bcd32f1086c8c604fb22a7496924e41cc46b1605. See #3582
2017-05-23commands: Remove the rlimit tweaking on macOSBjørn Erik Pedersen
Fixes #3512
2017-01-05commans: Remove unneeded build constraintBjørn Erik Pedersen
Fixes #2886
2015-12-10Add copyright header to that source files that don’t have one.Anthony Fok
See #1646
2015-12-07Fix copyright headers in source filesBjørn Erik Pedersen
Still need to add some missing headers and an AUTHORS file. See #1646
2015-12-02One more error fix in the server commandAnthony Fok
And some other small code clean-up. See #1502
2015-12-02Improve error handling in commandsBjørn Erik Pedersen
Cobra, the CLI commander in use in Hugo, has some long awaited improvements in the error handling department. This enables a more centralized error handling approach. This commit introduces that by changing all the command funcs to `RunE`: * The core part of the error logging, usage logging and `os.Exit(-1)` is now performed in one place and that one place only. * The usage text is now only shown on invalid arguments etc. (user errors) Fixes #1502
2015-11-23Change the license to Apache 2.0Steve Francia
2014-03-31Adding support for logging & verbose logging. Consolidation of error ↵spf13
handling. Integration of jWalterWeatherman library. Fixed #137
2014-02-21Fix imports so hugo builds on darwinspf13
2014-02-18Fix buildmattn