1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-22 03:07:41 +00:00

Fix installer.

This commit is contained in:
Calvin Rose
2019-09-22 13:19:02 -04:00
parent 064a700edd
commit 7bee204390
3 changed files with 5 additions and 4 deletions

View File

@@ -236,7 +236,8 @@
"Take a source file path and convert it to an output path."
[path from-ext to-ext]
(->> path
(string/replace-all sep "___")
(string/replace-all "\\" "___")
(string/replace-all "/" "___")
(string/replace-all from-ext to-ext)
(string "build" sep)))