- Actual resolution of Bug #1001. The Edit command was actually changing
  the working directory without going back to the original one
  afterwards.
This commit is contained in:
Louis-Claude Canon 2012-06-30 17:23:33 +02:00 committed by Paul Beckingham
parent e1407437e0
commit b1e63e575a
3 changed files with 12 additions and 5 deletions

View file

@ -32,6 +32,7 @@
#include <Context.h>
#include <Uri.h>
#include <Transport.h>
#include <assert.h>
#include <i18n.h>
#include <text.h>
#include <util.h>
@ -131,6 +132,7 @@ int CmdMerge::execute (std::string& output)
context.a3.push_back (Arg (uri._data, Arg::cat_literal));
std::string out;
assert (context.commands["push"]);
context.commands["push"]->execute (out);
}
}