summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Benediktsson <mrjbq7@gmail.com>2024-04-15 15:23:26 -0700
committerJohn Benediktsson <mrjbq7@gmail.com>2024-04-15 15:23:26 -0700
commit11e31854c6a5a2e4932c3890e6a8358576a78a8f (patch)
tree9700938bb2db7a8ef798344b82ffa5172bd4e4db
parent7019a69e2b984f3980bf652a6fa7b0bb7c1995a0 (diff)
build-from-source.windows: fix download thing
-rw-r--r--extra/build-from-source/windows/windows.factor4
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/build-from-source/windows/windows.factor b/extra/build-from-source/windows/windows.factor
index bc45a30fe7..36622c7ee5 100644
--- a/extra/build-from-source/windows/windows.factor
+++ b/extra/build-from-source/windows/windows.factor
@@ -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 ;