Skip to content

Commit

Permalink
Print a soft deprecation warning when app-id is used
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt committed Dec 12, 2023
1 parent 7d621d6 commit 72fbd05
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/builder-manifest.c
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,8 @@ builder_manifest_set_property (GObject *object,
case PROP_APP_ID:
g_free (self->id);
self->id = g_value_dup_string (value);
if (self->id)
g_printerr ("Note, app-id is deprecated, use id instead.\n");
break;

case PROP_ID:
Expand Down

0 comments on commit 72fbd05

Please sign in to comment.