diff options
author | Marcel Molina <marcel@vernix.org> | 2006-04-29 18:02:37 +0000 |
---|---|---|
committer | Marcel Molina <marcel@vernix.org> | 2006-04-29 18:02:37 +0000 |
commit | df26041c8990d4a0276e7a4c77cc771ac38e176e (patch) | |
tree | 281cba014dbf90e5b5d6d03257355d762dc21da6 /actionwebservice/Rakefile | |
parent | 869c41d8d6593b1c50d9354a32adf0bd38fddeb1 (diff) | |
download | rails-df26041c8990d4a0276e7a4c77cc771ac38e176e.tar.gz rails-df26041c8990d4a0276e7a4c77cc771ac38e176e.tar.bz2 rails-df26041c8990d4a0276e7a4c77cc771ac38e176e.zip |
Fix test database name typo. [Marcel Molina Jr.]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4309 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/Rakefile')
-rw-r--r-- | actionwebservice/Rakefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/actionwebservice/Rakefile b/actionwebservice/Rakefile index 953e47302a..07219e9dd2 100644 --- a/actionwebservice/Rakefile +++ b/actionwebservice/Rakefile @@ -34,8 +34,8 @@ SCHEMA_PATH = File.join(File.dirname(__FILE__), *%w(test fixtures db_definitions desc 'Build the MySQL test database' task :build_database do - %x( mysqladmin create activewebservice_unittest ) - %x( mysql activewebservice_unittest < #{File.join(SCHEMA_PATH, 'mysql.sql')} ) + %x( mysqladmin create actionwebservice_unittest ) + %x( mysql actionwebservice_unittest < #{File.join(SCHEMA_PATH, 'mysql.sql')} ) end @@ -168,4 +168,4 @@ task :release => [ :package ] do puts release_command system(release_command) end -end
\ No newline at end of file +end |