Skip to content

Commit

Permalink
Sync with r567
Browse files Browse the repository at this point in the history
  • Loading branch information
SharkHunter committed May 3, 2011
1 parent 60a19f3 commit 1487db9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/sharkhunter/dbgpack/DbgPack_plugin.java
Expand Up @@ -96,12 +96,12 @@ private void packDbg(String[] files) {
ZipOutputStream zos=new ZipOutputStream(new FileOutputStream(fName));
// PMS.conf
if(pms) {
File f=new File(PMS.getConfiguration().getPmsConfPath());
File f=new File(PMS.getConfiguration().getProfilePath());
//File f=new File(conf("PMS"));
writeToZip(zos,f);
}
if(web) {
File f=new File(conf("WEB"));
File f=new File(PMS.getConfiguration().getProfileDir()+File.separator+"WEB.conf");
writeToZip(zos,f);
}
// Now the rest
Expand Down

0 comments on commit 1487db9

Please sign in to comment.