diff options
-rw-r--r-- | actionmailer/Rakefile | 2 | ||||
-rw-r--r-- | actionpack/Rakefile | 2 | ||||
-rw-r--r-- | activerecord/Rakefile | 2 | ||||
-rw-r--r-- | activeresource/Rakefile | 2 | ||||
-rw-r--r-- | activesupport/Rakefile | 2 | ||||
-rw-r--r-- | railties/Rakefile | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/actionmailer/Rakefile b/actionmailer/Rakefile index fd0ef2dc51..9f4a387126 100644 --- a/actionmailer/Rakefile +++ b/actionmailer/Rakefile @@ -77,7 +77,7 @@ end desc "Publish the API documentation" task :pgem => [:package] do Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh gems.rubyonrails.org './gemupdate.sh'` + `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'` end desc "Publish the API documentation" diff --git a/actionpack/Rakefile b/actionpack/Rakefile index bd53932341..73da8b1ce3 100644 --- a/actionpack/Rakefile +++ b/actionpack/Rakefile @@ -137,7 +137,7 @@ task :update_js => [ :update_scriptaculous ] desc "Publish the API documentation" task :pgem => [:package] do Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh gems.rubyonrails.org './gemupdate.sh'` + `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'` end desc "Publish the API documentation" diff --git a/activerecord/Rakefile b/activerecord/Rakefile index 4cad8bd9d9..f192646547 100644 --- a/activerecord/Rakefile +++ b/activerecord/Rakefile @@ -226,7 +226,7 @@ end desc "Publish the beta gem" task :pgem => [:package] do Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh gems.rubyonrails.org './gemupdate.sh'` + `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'` end desc "Publish the API documentation" diff --git a/activeresource/Rakefile b/activeresource/Rakefile index a35864ad0f..ef6efd4903 100644 --- a/activeresource/Rakefile +++ b/activeresource/Rakefile @@ -116,7 +116,7 @@ end desc "Publish the beta gem" task :pgem => [:package] do Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh gems.rubyonrails.org './gemupdate.sh'` + `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'` end desc "Publish the API documentation" diff --git a/activesupport/Rakefile b/activesupport/Rakefile index 56c1d8033f..1961fb43cf 100644 --- a/activesupport/Rakefile +++ b/activesupport/Rakefile @@ -66,7 +66,7 @@ end desc "Publish the beta gem" task :pgem => [:package] do Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh gems.rubyonrails.org './gemupdate.sh'` + `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'` end desc "Publish the API documentation" diff --git a/railties/Rakefile b/railties/Rakefile index 6b98798632..adb6db0b64 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -379,7 +379,7 @@ end desc "Publish the rails gem" task :pgem => [:gem] do Rake::SshFilePublisher.new("gems.rubyonrails.org", "/u/sites/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload - `ssh gems.rubyonrails.org './gemupdate.sh'` + `ssh gems.rubyonrails.org '/u/sites/gems/gemupdate.sh'` end desc "Publish the API documentation" |