Skip to content

Commit

Permalink
Fixed the icon path.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeobrien committed Nov 24, 2011
1 parent f492300 commit 9e8c84b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions release/rakefile.rb
Expand Up @@ -63,7 +63,6 @@

nugetApiKey = YAML::load(File.open(ENV["USERPROFILE"] + "/.nuget/credentials"))["api_key"]
deployPath = "deploy"
logoPath = "misc/gribble.png"

corePackagePath = File.join(deployPath, "corepackage")
coreNuspec = "gribble.nuspec"
Expand All @@ -76,7 +75,6 @@
FileSystem.EnsurePath(corePackageLibPath)
FileSystem.CopyFiles(File.join(coreBinPath, "Gribble.dll"), corePackageLibPath)
FileSystem.CopyFiles(File.join(coreBinPath, "Gribble.dll"), corePackageLibPath)
FileSystem.CopyFiles(logoPath, corePackagePath)
end

desc "Create the core nuspec"
Expand All @@ -91,7 +89,7 @@
nuspec.language = "en-US"
nuspec.licenseUrl = "https://github.com/mikeobrien/Gribble/blob/master/LICENSE"
nuspec.projectUrl = "https://github.com/mikeobrien/Gribble"
nuspec.iconUrl = "http://nuget.org/Media/Default/Packages/gribble.nhibernate/#{ENV["GO_PIPELINE_LABEL"]}/gribble.png"
nuspec.iconUrl = "https://github.com/mikeobrien/Gribble/raw/master/misc/gribble.png"
nuspec.working_directory = corePackagePath
nuspec.output_file = coreNuspec
nuspec.tags = "orm dal sql"
Expand Down Expand Up @@ -121,7 +119,6 @@
FileSystem.EnsurePath(nhibernatePackageLibPath)
FileSystem.CopyFiles(File.join(nhibernateBinPath, "Gribble.NHibernate.dll"), nhibernatePackageLibPath)
FileSystem.CopyFiles(File.join(nhibernateBinPath, "Gribble.NHibernate.pdb"), nhibernatePackageLibPath)
FileSystem.CopyFiles(logoPath, corePackagePath)
end

desc "Create the NHibernate nuspec"
Expand All @@ -136,7 +133,7 @@
nuspec.language = "en-US"
nuspec.licenseUrl = "https://github.com/mikeobrien/Gribble/blob/master/LICENSE"
nuspec.projectUrl = "https://github.com/mikeobrien/Gribble"
nuspec.iconUrl = "http://nuget.org/Media/Default/Packages/gribble.nhibernate/#{ENV["GO_PIPELINE_LABEL"]}/gribble.png"
nuspec.iconUrl = "https://github.com/mikeobrien/Gribble/raw/master/misc/gribble.png"
nuspec.working_directory = nhibernatePackagePath
nuspec.output_file = nhibernateNuspec
nuspec.tags = "orm dal sql nhibernate"
Expand Down

0 comments on commit 9e8c84b

Please sign in to comment.