index
:
prokit/prokit.git
feature/block-device-mounting
feature/improve-error-handling
feature/installer-integration
feature/sessions
feature/use-shld
master
ProteanOS Development Kit
Patrick McDermott
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Makefile.am: Add comment about PACKAGE_VERSION hack
P. J. McDermott
2016-01-23
1
-0/+6
*
Always use rm's -f option
P. J. McDermott
2016-01-23
4
-5/+5
*
is_profile(): Add explicit return
P. J. McDermott
2016-01-23
1
-0/+2
*
Makefile.am: Update copyright years
P. J. McDermott
2016-01-23
1
-1/+1
*
Makefile.am: Fix locales uninstallation
P. J. McDermott
2016-01-23
1
-1/+1
*
Makefile.am: Pass PACKAGE_VERSION in shld stdin, not version.sh
P. J. McDermott
2016-01-23
1
-9/+3
*
Makefile.am: Add config.sh to prokit dependencies
P. J. McDermott
2016-01-23
1
-1/+1
*
Makefile.am: Fix prokit dependencies
P. J. McDermott
2016-01-23
1
-1/+1
*
config.sh.in: Drop PACKAGE_VERSION
P. J. McDermott
2016-01-23
1
-1/+0
*
Makefile.am: Generate and use version.sh
P. J. McDermott
2016-01-23
1
-1/+9
*
Makefile.am: Set and use PACKAGE_VERSION_GIT if IN_GIT
P. J. McDermott
2016-01-23
1
-1/+7
*
configure.ac: New "IN_GIT" conditional
P. J. McDermott
2016-01-23
1
-3/+3
*
main(): Exit on missing locale
P. J. McDermott
2016-01-23
1
-1/+3
*
load_locale(): Throw an error, not a warning, on missing locale
P. J. McDermott
2016-01-23
1
-1/+1
*
cmd/install*: Fix return values
P. J. McDermott
2016-01-23
2
-2/+2
*
cmd/installer-pc: Check exit status of dd, (s)fdisk, and mke2fs
P. J. McDermott
2016-01-23
1
-5/+20
*
cmd/help, cmd/version: Add explicit returns to main functions
P. J. McDermott
2016-01-23
2
-0/+4
*
configure.ac: Fix name of sha256sum utility
P. J. McDermott
2016-01-22
1
-2/+2
*
run_cmd(): Return command's exit status
P. J. McDermott
2016-01-22
1
-1/+3
*
install_system(): Fix if statement
P. J. McDermott
2016-01-22
1
-1/+1
*
Makefile.am: Fix locales installation
P. J. McDermott
2016-01-22
1
-1/+1
*
Add explicit returns to some functions
P. J. McDermott
2016-01-18
5
-0/+20
*
man: Convert page titles to upper case
P. J. McDermott
2016-01-18
9
-9/+9
*
Makefile.am: Sign release archives
P. J. McDermott
2016-01-17
1
-0/+4
*
cmd/installer-pc: Fix syntax error
P. J. McDermott
2016-01-17
1
-1/+1
*
NEWS: Mention improved error handling
P. J. McDermott
2016-01-17
1
-0/+1
*
session_handle_sig(): Drop ${exit_status} handling
P. J. McDermott
2016-01-17
1
-5/+1
*
Merge branch 'feature/improve-error-handling'
P. J. McDermott
2016-01-17
16
-100/+241
|
\
|
*
error(): Remove freshly executed murderous code
feature/improve-error-handling
P. J. McDermott
2016-01-17
1
-21/+6
|
*
session_begin(), session_end(): Use non-exiting error()
P. J. McDermott
2016-01-17
1
-3/+8
|
*
cmd/*: Check return value of session_begin()
P. J. McDermott
2016-01-17
4
-4/+19
|
*
install_get_pkgs(): Use non-exiting error()
P. J. McDermott
2016-01-17
1
-11/+27
|
*
install_get_pkgs(): New "url" variable
P. J. McDermott
2016-01-17
1
-5/+5
|
*
src/install.sh: s/install_fnames/install_urls/
P. J. McDermott
2016-01-17
1
-4/+4
|
*
fopen(), fclose(): Use non-exiting error()
P. J. McDermott
2016-01-17
1
-4/+6
|
*
install_*_pkgs(): Check return value of fopen()
P. J. McDermott
2016-01-17
1
-3/+9
|
*
install_*(): Return 0 on success
P. J. McDermott
2016-01-17
1
-0/+14
|
*
install_system(): Check return value of install_*_pkgs()
P. J. McDermott
2016-01-17
1
-2/+7
|
*
install_system(): Use non-exiting error()
P. J. McDermott
2016-01-17
1
-4/+6
|
*
cmd/install*: Check return value of install_system()
P. J. McDermott
2016-01-17
2
-6/+13
|
*
cmd/*: Return 0 on success
P. J. McDermott
2016-01-17
6
-0/+12
|
*
block_*(): Use non-exiting error()
P. J. McDermott
2016-01-17
1
-4/+8
|
*
cmd/*: Check return value of block_mount()
P. J. McDermott
2016-01-17
6
-6/+18
|
*
check_block(): Use non-exiting error()
P. J. McDermott
2016-01-17
1
-1/+2
|
*
cmd/installer-pc, block_mount): Check ret val of check_block()
P. J. McDermott
2016-01-17
2
-2/+6
|
*
package_init(): Use non-exiting error()
P. J. McDermott
2016-01-17
1
-1/+2
|
*
cmd/build: Check return value of package_init()
P. J. McDermott
2016-01-17
1
-1/+4
|
*
profile_*(): Use non-exiting error()
P. J. McDermott
2016-01-17
1
-2/+4
|
*
cmd/*: Check return value of profile_set()
P. J. McDermott
2016-01-17
2
-2/+6
|
*
cmd/*: Check return value of profile_detect()
P. J. McDermott
2016-01-17
4
-4/+16
[prev]
[next]