Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lib/*.sh, lib/*/*.sh: Add ".sh" to header comment. | P. J. McDermott | 2013-08-18 | 1 | -1/+1 |
| | |||||
* | lib/*.sh, lib/*/*.sh: Rewrite include guards. | P. J. McDermott | 2013-08-18 | 1 | -2/+2 |
| | | | | This is one step toward adding `set -u` to opkbuild. | ||||
* | _ob_local(), _ob_return(): Remove.feature/remove-_ob_local | P. J. McDermott | 2013-08-18 | 1 | -29/+0 |
| | |||||
* | Additionally license everything under GPLv2. | P. J. McDermott | 2012-10-16 | 1 | -1/+1 |
| | |||||
* | More properly set IFS to its default value. | P. J. McDermott | 2012-10-09 | 1 | -1/+2 |
| | |||||
* | Protect library functions from IFS changes. | P. J. McDermott | 2012-10-09 | 1 | -0/+9 |
| | |||||
* | Fix _ob_local(). | P. J. McDermott | 2012-10-04 | 1 | -1/+1 |
| | |||||
* | Add a function to validate shell variable names. | P. J. McDermott | 2012-09-28 | 1 | -0/+10 |
| | |||||
* | Return rather than print value in _ob_return. | P. J. McDermott | 2012-09-09 | 1 | -3/+1 |
| | | | | | Don't use _ob_return in command substitutions. Doing so unsets stack variables only in a subshell environment. | ||||
* | Make sure that _ob_return only unsets variables. | P. J. McDermott | 2012-09-08 | 1 | -1/+1 |
| | | | | | | | | According to POSIX.1-2008, some conformant shells might try to unset a function if: 1. Neither -f nor -v is specified and 2. A variable by a specified name does not exist. | ||||
* | Implement _ob_local and _ob_return. | P. J. McDermott | 2012-09-08 | 1 | -0/+42 |