Skip to content
Snippets Groups Projects
Commit cdf6c87b authored by Calen Pennington's avatar Calen Pennington
Browse files

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

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 cb033b44
No related merge requests found
......@@ -96,11 +96,11 @@ task :package do
"--verbose",
"--after-install=#{postinstall.path}",
"--prefix=#{INSTALL_DIR_PATH}",
"--exclude=build/**",
"--exclude=rakefile",
"--exclude=.git/**",
"--exclude=**/build/**",
"--exclude=**/rakefile",
"--exclude=**/.git/**",
"--exclude=**/*.pyc",
"--exclude=reports/**",
"--exclude=**/reports/**",
"-C", "#{REPO_ROOT}",
"--provides=#{PACKAGE_NAME}",
"--name=#{NORMALIZED_DEPLOY_NAME}",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment