Skip to content

Commit

Permalink
tweak(vars): add a disclaimer when Windows is detected
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Jul 11, 2023
1 parent 3a35113 commit 7763e04
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/me-vars.el
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,9 @@ This list is automatically constructed from the environment variables
(defconst os/win (and (memq system-type '(cygwin windows-nt ms-dos)) t))
(defconst os/mac (eq system-type 'darwin))

(unless os/win
(message "[DISCLAIMER]: MINEMACS HAS NOT BEEN TESTED ON WINDOWS, YOU SHOULD INVESTIGATE THE ISSUES YOU FACE!"))

;; Should return x86_64, aarch64, armhf, ...
(defconst sys/arch (intern (car (split-string system-configuration "-"))))

Expand Down

0 comments on commit 7763e04

Please sign in to comment.