Commit db652824 by Calen Pennington

Exclude things during .deb packaging correctly, so that we don't have a bunch of…

Exclude things during .deb packaging correctly, so that we don't have a bunch of build detritus left over. FPM still leaves the empty directories, unfortunately
parent 50d40672
...@@ -96,11 +96,11 @@ task :package do ...@@ -96,11 +96,11 @@ task :package do
"--verbose", "--verbose",
"--after-install=#{postinstall.path}", "--after-install=#{postinstall.path}",
"--prefix=#{INSTALL_DIR_PATH}", "--prefix=#{INSTALL_DIR_PATH}",
"--exclude=build/**", "--exclude=**/build/**",
"--exclude=rakefile", "--exclude=**/rakefile",
"--exclude=.git/**", "--exclude=**/.git/**",
"--exclude=**/*.pyc", "--exclude=**/*.pyc",
"--exclude=reports/**", "--exclude=**/reports/**",
"-C", "#{REPO_ROOT}", "-C", "#{REPO_ROOT}",
"--provides=#{PACKAGE_NAME}", "--provides=#{PACKAGE_NAME}",
"--name=#{NORMALIZED_DEPLOY_NAME}", "--name=#{NORMALIZED_DEPLOY_NAME}",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment