]> gitweb.factorcode.org Git - factor.git/commitdiff
build-from-source.windows: fix download thing
authorJohn Benediktsson <mrjbq7@gmail.com>
Mon, 15 Apr 2024 22:23:26 +0000 (15:23 -0700)
committerJohn Benediktsson <mrjbq7@gmail.com>
Mon, 15 Apr 2024 22:23:26 +0000 (15:23 -0700)
extra/build-from-source/windows/windows.factor

index bc45a30fe7d88120967f107572d6e781081024c5..36622c7ee5d552ea6d34842a73816aef24f75ec1 100644 (file)
@@ -1,7 +1,7 @@
 ! Copyright (C) 2023 Doug Coleman.
 ! See https://factorcode.org/license.txt for BSD license.
 USING: build-from-source combinators.smart continuations
-environment http.client io.directories io.files.temp io.launcher
+environment http.download io.directories io.files.temp io.launcher
 io.pathnames kernel layouts qw sequences windows.shell32 ;
 IN: build-from-source.windows
 
@@ -396,7 +396,7 @@ IN: build-from-source.windows
 ! Probably not needed on Windows 10+
 : install-windows-redistributable ( -- )
     [
-        "https://aka.ms/vs/17/release/vc_redist.x64.exe" download
+        "https://aka.ms/vs/17/release/vc_redist.x64.exe" download drop
         qw{ vc_redist.x64.exe /install /passive /norestart } try-process
     ] with-temp-directory ;