summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Leeds <matthew.leeds@endlessm.com>2018-08-14 21:49:09 -0700
committerAtomic Bot <atomic-devel@projectatomic.io>2018-08-17 08:45:36 +0000
commit9616737c0ba09cc0e943b22f8d85f62f06bf210b (patch)
tree8558aac7fd8d72ad861fb2ebfd06a886b1607333
parent4c5fc20d60fa13c70d13f2571b9504b9be6c3b59 (diff)
downloadflatpak-9616737c0ba09cc0e943b22f8d85f62f06bf210b.tar.gz
dir: Fix a subpath checkout error message
In this loop we're checking out a subpath under /files, not /metadata, so fix the error message. Closes: #1970 Approved by: alexlarsson
-rw-r--r--common/flatpak-dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/flatpak-dir.c b/common/flatpak-dir.c
index cfd6d96e..45cc941d 100644
--- a/common/flatpak-dir.c
+++ b/common/flatpak-dir.c
@@ -6715,7 +6715,7 @@ flatpak_dir_deploy (FlatpakDir *self,
checksum,
cancellable, error))
{
- g_prefix_error (error, _("While trying to checkout metadata subpath: "));
+ g_prefix_error (error, _("While trying to checkout subpath ā€˜%sā€™: "), subpath);
return FALSE;
}
}