You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by lu...@apache.org on 2010/07/09 01:24:18 UTC

svn commit: r962123 - /incubator/deltacloud/trunk/framework/config/environment.rb

Author: lutter
Date: Thu Jul  8 23:24:17 2010
New Revision: 962123

URL: http://svn.apache.org/viewvc?rev=962123&view=rev
Log:
fix pathing now that repo names are different.

Modified:
    incubator/deltacloud/trunk/framework/config/environment.rb

Modified: incubator/deltacloud/trunk/framework/config/environment.rb
URL: http://svn.apache.org/viewvc/incubator/deltacloud/trunk/framework/config/environment.rb?rev=962123&r1=962122&r2=962123&view=diff
==============================================================================
--- incubator/deltacloud/trunk/framework/config/environment.rb (original)
+++ incubator/deltacloud/trunk/framework/config/environment.rb Thu Jul  8 23:24:17 2010
@@ -70,13 +70,13 @@ unless defined?( DRIVER )
 end
 
 
-DRIVER_ROOT = File.dirname( __FILE__ ) + "/../../deltacloud-driver-#{DRIVER}"
+DRIVER_ROOT = File.dirname( __FILE__ ) + "/../../driver-#{DRIVER}"
 $: << DRIVER_ROOT+'/lib'
 
 case DRIVER
   when :mock
     DRIVER_CLASS_NAME = "MockDriver"
-    MOCK_STORAGE_ROOT = File.dirname( __FILE__ ) + "/../../deltacloud-client-ruby/specs/data"
+    MOCK_STORAGE_ROOT = File.dirname( __FILE__ ) + "/../../client-ruby/specs/data"
   when :ec2
     DRIVER_CLASS_NAME = "Ec2Driver"
   when :rhevm