Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
eopkg: Fix handling of ypkg packages
Browse files Browse the repository at this point in the history
Signed-off-by: Ikey Doherty <[email protected]>
  • Loading branch information
Ikey Doherty committed Jun 15, 2015
1 parent d6a039b commit 0b918ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/packaging/eopkg.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ bool eopkg_is_ignored(struct source_package_t *pkg, char *id)

bool eopkg_is_package(const char *filename)
{
return g_str_has_suffix((const gchar*)filename, "pspec.xml") || g_str_has_prefix((const gchar*)filename, "pspec_x86_64.xml");
return g_str_has_suffix((const gchar*)filename, "pspec.xml") || g_str_has_suffix((const gchar*)filename, "pspec_x86_64.xml");
}

void eopkg_locate_sources(const char *directory, bool recurse)
Expand Down

0 comments on commit 0b918ac

Please sign in to comment.