mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Improving the packaging command
Adding a <path> parameter to define the location of the created file Corrected the destination folder for themes --HG-- branch : nuget
This commit is contained in:
@@ -29,7 +29,8 @@ namespace Orchard.Packaging.Services {
|
||||
}
|
||||
|
||||
public void AddSource(string feedTitle, string feedUrl) {
|
||||
_packagingSourceRecordRepository.Create(new PackagingSource {FeedTitle = feedTitle, FeedUrl = feedUrl});
|
||||
var packagingSource = new PackagingSource {FeedTitle = feedTitle, FeedUrl = feedUrl};
|
||||
_packagingSourceRecordRepository.Create(packagingSource);
|
||||
}
|
||||
|
||||
public void RemoveSource(int id) {
|
||||
|
Reference in New Issue
Block a user