typo
authorMichael Andres <ma@suse.de>
Mon, 4 Feb 2008 19:06:57 +0000 (19:06 +0000)
committerMichael Andres <ma@suse.de>
Mon, 4 Feb 2008 19:06:57 +0000 (19:06 +0000)
zypp/RepoManager.cc

index 08f47cc..f584c75 100644 (file)
@@ -745,7 +745,7 @@ namespace zypp
         // Take care we unlink the solvfile on exception
         ManagedFile guard( solvfile, filesystem::unlink );
 
-        string cmd( str::form( "/repo2solv.sh \"%s\" > '%s'", rawpath.c_str(), solvfile.c_str() ) );
+        string cmd( str::form( "repo2solv.sh \"%s\" > '%s'", rawpath.c_str(), solvfile.c_str() ) );
         ExternalProgram prog( cmd, ExternalProgram::Stderr_To_Stdout );
         for ( string output( prog.receiveLine() ); output.length(); output = prog.receiveLine() ) {
           MIL << "  " << output;