Workaround für komische Python-Pfade

This commit is contained in:
Hraban 2025-03-13 20:14:43 +01:00 committed by Hraban Ramm
parent 07b598db06
commit 04a01d3b3f

View File

@ -4,9 +4,9 @@
(let* ((python_cmd (string-append "import sys, yaml, json; print(json.dumps(yaml.safe_load(open('" filename "'))))"))
; WTF? On Windows there is "py" and we need to specify the encoding, on linux there is "python3" or "python"
; but "python3" seems to work better. Be sure you have PyYAML installed.
(pipe (open-pipe* OPEN_READ (if windows? "py" "python3") "-X" "utf8" "-c" python_cmd))
(pipe (open-pipe (string-append "PYTHONHOME='' " (if windows? "py" "python3") " -X utf8 -c \"" python_cmd "\"") OPEN_READ))
(json (get-string-all pipe)))
(close-pipe pipe)
(json-string->scm json)))
(define (parse-yml-file filename) (resolve-inherits (yml-file->scm filename)))
(define (parse-yml-file filename) (resolve-inherits (yml-file->scm filename)))