inst-resources/core-files.nsh
author Dan
Sun, 16 Aug 2009 00:13:41 -0400
changeset 5 85800cb04cc5
parent 3 0cce88c7cf7c
permissions -rwxr-xr-x
Moved around some ExperienceUI directives; fixed missing $XPUI_ABORTED check in StackSelectLeave

!macro Core_Install
  SetOverwrite try
  SectionIn RO
  
  ; not a huge deal if this fails, it just helps me avoid dumb mistakes.
  !system 'hg -R "${ENANO_ROOT}" update'
  
  SetOutPath "$INSTDIR\apps\${PRODUCT_SHORTNAME}\htdocs"
  File /r /x .hg /x .hgtags "${ENANO_ROOT}\*"
!macroend

!macro Core_Uninstall
  ; I'm sorry, but 1,000 files don't deserve to be listed out.
  RmDir /r "$INSTDIR\htdocs"
  RmDir /r "$INSTDIR\conf"
  RmDir /r "$INSTDIR\scripts"
  Delete "$INSTDIR\uninstall.exe"
  RmDir "$INSTDIR"
!macroend