summaryrefslogtreecommitdiff
path: root/trunk/reprap/host/nsis/reprap-firmware-uninstall.nsi
blob: b2d8ed52c259941ff30aa5c68de464c716f0d8d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
; reprap-firmware-uninstall.nsi
;
; Reprap firmware uninstall -- included by reprap-host.nsi
;
; Authors: Bruce Wattendorf and Jonathan Marsden
;
; Date: 2008-01-25
;
  Delete "$INSTDIR\firmware\extruder0.hex"
  Delete "$INSTDIR\firmware\extruder1.hex"
  Delete "$INSTDIR\firmware\stepmotorx.hex"
  Delete "$INSTDIR\firmware\stepmotory.hex"
  Delete "$INSTDIR\firmware\stepmotorz.hex"
;
  RMDir "$INSTDIR\firmware"
;
; End of reprap-firmware-uninstall.nsi