From 1ed647e1b03fa95b67dde95538071a8242b42a09 Mon Sep 17 00:00:00 2001 From: Andrey Smirnov Date: Wed, 1 Oct 2014 00:44:01 +0400 Subject: [PATCH] List storage & prefix in publish list. #113 --- cmd/publish_list.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/publish_list.go b/cmd/publish_list.go index c352abda..20d89bcc 100644 --- a/cmd/publish_list.go +++ b/cmd/publish_list.go @@ -25,7 +25,7 @@ func aptlyPublishList(cmd *commander.Command, args []string) error { } if raw { - published = append(published, fmt.Sprintf("%s %s", repo.Prefix, repo.Distribution)) + published = append(published, fmt.Sprintf("%s %s", repo.StoragePrefix(), repo.Distribution)) } else { published = append(published, repo.String()) }