Replace package in work library when I get a new one.

This commit is contained in:
Stephen Williams 2011-07-24 11:06:59 -07:00
parent 116d9f5f54
commit 9ee938f0b4
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ static void store_package_in_work(const Package*pack)
{
string path = make_work_package_path(pack->name());
ofstream file (path.c_str(), ios_base::out|ios_base::app);
ofstream file (path.c_str(), ios_base::out);
pack->write_to_stream(file);
}