Skip to content

Commit

Permalink
rip-cp-package => rip-package-copy
Browse files Browse the repository at this point in the history
  • Loading branch information
josh committed Aug 12, 2010
1 parent 251589f commit 6c2ac21
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/rip-package-build
Expand Up @@ -33,7 +33,7 @@ synchronize(built_package_path) do
if File.directory?(built_package_path)
puts built_package_path
else
rip :'cp-package', package_path, built_package_path
rip :'package-copy', package_path, built_package_path

Dir["#{built_package_path}/**/extconf.rb"].each do |build_file|
build_dir = File.dirname(build_file)
Expand Down
2 changes: 1 addition & 1 deletion bin/rip-cp-package → bin/rip-package-copy
@@ -1,5 +1,5 @@
#!/usr/bin/env ruby
# usage: rip-cp-package OLD_PACKAGE_PATH NEW_PACKAGE_PATH [SUBPATH]
# usage: rip-package-copy OLD_PACKAGE_PATH NEW_PACKAGE_PATH [SUBPATH]
#
# Builds a rip package's Ruby extension(s).

Expand Down
2 changes: 1 addition & 1 deletion bin/rip-package-handle-sub
Expand Up @@ -21,7 +21,7 @@ package_path = "#{Rip.packages}/#{name}#{subpath}-#{Rip.md5("#{hash}#{path}")}"

synchronize(package_path) do
if !File.exist?(package_path)
rip :'cp-package', base_package, package_path, path
rip :'package-copy', base_package, package_path, path

base_metadata = rip "package-metadata", base_package
base_source, base_version = base_metadata.split(' ')
Expand Down
2 changes: 1 addition & 1 deletion bin/rip-package-repair
Expand Up @@ -21,7 +21,7 @@ module Patches
synchronize(patched_package_path) do
if !File.exist?(patched_package_path)
info "repairing #{name}"
rip :'cp-package', package_path, patched_package_path
rip :'package-copy', package_path, patched_package_path

cd(patched_package_path) do
send(method)
Expand Down

0 comments on commit 6c2ac21

Please sign in to comment.