Update installer again.

This commit is contained in:
Calvin Rose 2019-05-29 19:48:31 -04:00
parent e8516c29e0
commit c8c6419013
2 changed files with 4 additions and 4 deletions

View File

@ -128,9 +128,9 @@ section "uninstall"
# Remove files
delete "$INSTDIR\logo.ico"
rmdir /S "$INSTDIR\Library"
rmdir /S "$INSTDIR\bin"
rmdir /S "$INSTDIR\C"
rmdir /r "$INSTDIR\Library"
rmdir /r "$INSTDIR\bin"
rmdir /r "$INSTDIR\C"
# Remove env vars

View File

@ -164,7 +164,7 @@
(defn copy
"Copy a file or directory recursively from one location to another."
[src dest]
(shell (if is-win "xcopy " "cp -rf ") `"` src `" "` dest (if is-win `" /h /y /e` `"`)))
(shell (if is-win "xcopy " "cp -rf ") `"` src `" "` dest (if is-win `" /y /e` `"`)))
#
# C Compilation