Skip to content

Commit

Permalink
Merge commit 'c07c4724a317fd390e16b69ca558dbd14e372662'
Browse files Browse the repository at this point in the history
  • Loading branch information
laffer1 committed Mar 30, 2024
2 parents a15fac0 + c07c472 commit 95f0208
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/mport/libmport/list.c
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ mport_list_print(mportInstance *mport, mportListPrint *print)

mport_index_entry_free_vec(iestart);
indexEntries = NULL;
} else if (mport->verbosity == MPORT_VVERBOSE) {
} else if (mport->verbosity == MPORT_VVERBOSE || print->verbose) {
comment = mport_str_remove((*packs)->comment, '\\');
snprintf(name_version, 30, "%s-%s", (*packs)->name, (*packs)->version);

Expand Down
2 changes: 1 addition & 1 deletion contrib/mport/libmport/mport_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
#define MPORT_MASTER_VERSION 12
#define MPORT_BUNDLE_VERSION 6
#define MPORT_BUNDLE_VERSION_STR "6"
#define MPORT_VERSION "2.6.1"
#define MPORT_VERSION "2.6.2"

#define MPORT_SETTING_MIRROR_REGION "mirror_region"
#define MPORT_SETTING_TARGET_OS "target_os"
Expand Down
1 change: 1 addition & 0 deletions contrib/mport/mport/mport.c
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ main(int argc, char *argv[])
if (argc > 1) {
if (!strcmp(argv[1], "updates") || !strcmp(argv[1], "up")) {
opts.update = true;
loadIndex(mport);
} else if (!strcmp(argv[1], "prime")) {
opts.prime = true;
} else {
Expand Down

0 comments on commit 95f0208

Please sign in to comment.