diff --git a/tools/build/binary-release/Linux/bin/set-env.sh b/tools/build/binary-release/Linux/scripts/set-env.sh similarity index 100% rename from tools/build/binary-release/Linux/bin/set-env.sh rename to tools/build/binary-release/Linux/scripts/set-env.sh diff --git a/tools/build/binary-release/MacOS/bin/set-env.sh b/tools/build/binary-release/MacOS/scripts/set-env.sh similarity index 100% rename from tools/build/binary-release/MacOS/bin/set-env.sh rename to tools/build/binary-release/MacOS/scripts/set-env.sh diff --git a/tools/build/binary-release/Windows/README.md b/tools/build/binary-release/Windows/README.md index 1cf0cb653e5..3a42f1a3066 100644 --- a/tools/build/binary-release/Windows/README.md +++ b/tools/build/binary-release/Windows/README.md @@ -45,7 +45,7 @@ To install modules that require a compiler toolchain, you need to have the Microsoft Visual C compiler installed. The freely available Microsoft BuildTools contain that compiler. You can use the installer script - C:\path\to\this\folder\bin\vs_build_tools_install_assistant.ps1 + C:\path\to\this\folder\scripts\vs_build_tools_install_assistant.ps1 to guide you through the installation. @@ -53,18 +53,18 @@ Alternatively you can install the BuildTools manually. They can be downloaded [here](https://visualstudio.microsoft.com/thank-you-downloading-visual-studio/?sku=BuildTools). You'll need to select the `C++ build tools` and recommended components. -The compiler is only usable in special Build Tools CMD / PowerShell windows. +The compiler is only usable in a special Build Tools CMD / PowerShell window. To make use of the Build Tools in Rakudo using CMD: - start a CMD window using Start Menu -> Visual Studio 2019 -> x86 / x64 Native Tools Command Prompt for VS 2019 -- Execute $scriptPath\set-env.bat +- Execute `C:\path\to\this\folder\scripts\set-env.bat` To make use of the Build Tools in Rakudo using PowerShell: - start a PowerShell window using Start Menu -> Visual Studio 2019 -> Developer PowerShell for VS 2019 -- Execute $scriptPath\set-env.ps1 +- Execute `C:\path\to\this\folder\scripts\set-env.ps1` Changes diff --git a/tools/build/binary-release/Windows/bin/set-env.bat b/tools/build/binary-release/Windows/scripts/set-env.bat similarity index 100% rename from tools/build/binary-release/Windows/bin/set-env.bat rename to tools/build/binary-release/Windows/scripts/set-env.bat diff --git a/tools/build/binary-release/Windows/bin/set-env.ps1 b/tools/build/binary-release/Windows/scripts/set-env.ps1 similarity index 100% rename from tools/build/binary-release/Windows/bin/set-env.ps1 rename to tools/build/binary-release/Windows/scripts/set-env.ps1 diff --git a/tools/build/binary-release/Windows/bin/vs_build_tools_install_assistant.ps1 b/tools/build/binary-release/Windows/scripts/vs_build_tools_install_assistant.ps1 similarity index 100% rename from tools/build/binary-release/Windows/bin/vs_build_tools_install_assistant.ps1 rename to tools/build/binary-release/Windows/scripts/vs_build_tools_install_assistant.ps1