James Moger
2014-03-14 503a853acad49ac6da7f520c26b3b27942dbfec5
src/main/java/com/gitblit/transport/ssh/commands/Receive.java
@@ -17,7 +17,6 @@
import org.eclipse.jgit.transport.ReceivePack;
import com.gitblit.transport.ssh.AbstractGitCommand;
import com.gitblit.transport.ssh.CommandMetaData;
@CommandMetaData(name = "git-receive-pack", description = "Receive pack")
@@ -25,7 +24,7 @@
   @Override
   protected void runImpl() throws Failure {
      try {
         ReceivePack rp = receivePackFactory.create(ctx.getSession(), repo);
         ReceivePack rp = receivePackFactory.create(ctx.getClient(), repo);
         rp.receive(in, out, null);
      } catch (Exception e) {
         throw new Failure(1, "fatal: Cannot receive pack: ", e);