Skip to content

Commit

Permalink
Fixed Linux server basic backup missing some files
Browse files Browse the repository at this point in the history
  • Loading branch information
ccw808 committed Sep 10, 2015
1 parent edc1944 commit a7f8cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MTA10_Server/mods/deathmatch/utils/CZipMaker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ bool CZipMaker::InsertDirectoryTree ( const SString& strInSrc, const SString& st
SString strSrc = PathConform ( strInSrc );
SString strDest = PathConform ( strInDest );

std::vector < SString > fileList = FindFiles ( PathJoin ( strSrc, "*" ), true, true );
std::vector < SString > fileList = FindFiles ( PathJoin ( strSrc, "" ), true, true );
for ( unsigned int i = 0 ; i < fileList.size () ; i++ )
{
SString strSrcNext = PathConform ( PathJoin ( strSrc, fileList[i] ) );
Expand Down

0 comments on commit a7f8cad

Please sign in to comment.