lib/buildr/packaging/package.rb in vic-buildr-1.3.3 vs lib/buildr/packaging/package.rb in vic-buildr-1.3.4

- old
+ new

@@ -33,10 +33,10 @@ Project.local_task('install'=>'package') { |name| "Installing packages from #{name}" } desc 'Remove previously installed packages' Project.local_task('uninstall') { |name| "Uninstalling packages from #{name}" } desc 'Upload packages created by the project' Project.local_task('upload'=>'package') { |name| "Deploying packages from #{name}" } - # Anything that comes after local packaging (install, deploy) executes the integration tests, + # Anything that comes after local packaging (install, upload) executes the integration tests, # which do not conflict with integration invoking the project's own packaging (package=> # integration=>foo:package is not circular, just confusing to debug.) task 'package' do task('integration').invoke if Buildr.options.test && Buildr.application.original_dir == Dir.pwd end