Radish alpha
H
rad:z3QDZAW2FAfuLvihrhiyDC9fAD8G9
HardenedBSD Package Manager
Radicle
Git
Prettify a bit.
Matthew Seaman committed 11 years ago
commit ed6c984ef06f0f657230155b8985ebf9bbf9e61a
parent e6c628d
2 files changed +4 -4
modified libpkg/pkg_create.c
@@ -74,7 +74,7 @@ pkg_create_from_dir(struct pkg *pkg, const char *root,
	 * Get / compute size / checksum if not provided in the manifest
	 */

-
	counter_init("file size/checksum");
+
	counter_init("file sizes/checksums");

	while (pkg_files(pkg, &file) == EPKG_OK) {

@@ -139,7 +139,7 @@ pkg_create_from_dir(struct pkg *pkg, const char *root,
		sbuf_delete(b);
	}

-
	counter_init("packaging files");
+
	counter_init("packing files");

	while (pkg_files(pkg, &file) == EPKG_OK) {

@@ -155,7 +155,7 @@ pkg_create_from_dir(struct pkg *pkg, const char *root,

	counter_end();

-
	counter_init("directories");
+
	counter_init("packing directories");

	while (pkg_dirs(pkg, &dir) == EPKG_OK) {
		snprintf(fpath, sizeof(fpath), "%s%s%s", root ? root : "",
modified src/event.c
@@ -840,7 +840,7 @@ event_callback(void *data, struct pkg_event *ev)
		if (!quiet) {
			switch (ev->e_counter.state) {
			case PKG_EVENT_COUNTER_START:
-
				printf("%-16s:", ev->e_counter.what);
+
				printf("%-24s:", ev->e_counter.what);
				break;
			case PKG_EVENT_COUNTER_MINOR_TICK:
				printf(".");