Skip to content

Commit 0ac8abc

Browse files
committed
Note the PowerShell >=3 requirement in CONTRIBUTING.md.
1 parent dceb736 commit 0ac8abc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Thank you for your interest in OpenRA, OpenRA modding, and the OpenRA Mod SDK.
44

55
Please note that this repository is specifically for the scripts and infrastructure used to develop and build mods; bugs and feature requests against OpenRA itself should be directed to [the main OpenRA/OpenRA repository](https://github.com/OpenRA/OpenRA). If you do come across a bug with the Mod SDK, or would like to request a new feature, then please take a look at the issue tracker first to see if it has already been reported.
66

7-
When developing new features, it is important to make sure that they work on all our supported platforms. Right now, this means Windows >= 7, macOS >= 10.7, and Linux. We would like to also support *BSD, but do not currently have a means to test this.
7+
When developing new features, it is important to make sure that they work on all our supported platforms. Right now, this means Windows >= 7 (with PowerShell >= 3), macOS >= 10.7, and Linux. We would like to also support *BSD, but do not currently have a means to test this.
88

99
Some issues to be aware of include:
1010
* Use http://www.shellcheck.net/ to confirm POSIX compatibility of *.sh scripts.

make.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ function ParseConfigFile($fileName)
235235
###############################################################
236236
if ($PSVersionTable.PSVersion.Major -clt 3)
237237
{
238-
echo "The makefile requires Powershell version 3 or higher."
238+
echo "The makefile requires PowerShell version 3 or higher."
239239
echo "Please download and install the latest Windows Management Framework version from Microsoft."
240240
WaitForInput
241241
}

0 commit comments

Comments
 (0)