From: Brian S. <xue...@us...> - 2007-08-04 12:41:35
|
Update of /cvsroot/popfile/windows/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19925 Modified Files: Tag: b0_22_2 pfidiag.nsi Log Message: Add the location of the "temporary files" folder to the full report. Index: pfidiag.nsi =================================================================== RCS file: /cvsroot/popfile/windows/test/pfidiag.nsi,v retrieving revision 1.8.4.8 retrieving revision 1.8.4.9 diff -C2 -d -r1.8.4.8 -r1.8.4.9 *** pfidiag.nsi 29 Jul 2007 16:16:26 -0000 1.8.4.8 --- pfidiag.nsi 4 Aug 2007 12:41:36 -0000 1.8.4.9 *************** *** 104,108 **** ;-------------------------------------------------------------------------- ! !define C_VERSION "0.1.6" !define C_OUTFILE "pfidiag.exe" --- 104,108 ---- ;-------------------------------------------------------------------------- ! !define C_VERSION "0.1.7" !define C_OUTFILE "pfidiag.exe" *************** *** 553,556 **** --- 553,578 ---- ;-------------------------------------------------------------------------- + ; Section: Location of temporary files + ;-------------------------------------------------------------------------- + + Section "Location of temporary files" + + StrCmp $G_DIAG_MODE "full" enter_section next_section + + enter_section: + + DetailPrint "------------------------------------------------------------" + DetailPrint "Location used to store temporary files" + DetailPrint "------------------------------------------------------------" + + DetailPrint "" + DetailPrint "$$TEMP folder path = < $TEMP >" + DetailPrint "" + + next_section: + SectionEnd + + + ;-------------------------------------------------------------------------- ; Section: Start Menu Locations and Shortcuts ;-------------------------------------------------------------------------- |