Skip to content

Commit 53cedd5

Browse files
committed
Fixed Java installation, cleanup legal headers
1 parent 0aea4a0 commit 53cedd5

27 files changed

+97
-658
lines changed

LICENSE.txt

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
BSD 2-Clause License
2+
3+
Copyright (c) 2022, Thierry Lelegard
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this
10+
list of conditions and the following disclaimer.
11+
12+
2. Redistributions in binary form must reproduce the above copyright notice,
13+
this list of conditions and the following disclaimer in the documentation
14+
and/or other materials provided with the distribution.
15+
16+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
20+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
22+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
23+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

install-7zip.ps1

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
5-
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
8-
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
14-
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
26-
#
27-
#-----------------------------------------------------------------------------
4+
# BSD-2-Clause license, see LICENSE.txt file
285
#
296
# Download and install 7zip for Windows.
307
# See parameters documentation in install-common.ps1.

install-administrator.ps1

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
5-
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
8-
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
14-
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
26-
#
27-
#-----------------------------------------------------------------------------
4+
# BSD-2-Clause license, see LICENSE.txt file
285
#
296
# Enable the Administrator account and make it appear in the login page.
307
# On Windows 10 Home, this is not done by default.

install-common.ps1

+25-48
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,39 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
4+
# BSD-2-Clause license, see LICENSE.txt file
55
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
6+
# Common part for all install scripts.
7+
# Not a PowerShell module for easier integration of variables.
88
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
9+
# Must be included as follow by all scripts:
10+
# . "$PSScriptRoot\install-common.ps1"
1411
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
12+
# Assume that the calling script defined standard installation parameters:
2613
#
27-
#-----------------------------------------------------------------------------
28-
#
29-
# Common part for all install scripts.
30-
# Not a PowerShell module for easier integration of variables.
31-
#
32-
# Must be included as follow by all scripts:
33-
# . "$PSScriptRoot\install-common.ps1"
34-
#
35-
# Assume that the calling script defined standard installation parameters:
36-
#
37-
# -Destination directory
38-
# Specify a local directory where the package will be downloaded.
39-
# By default, use the downloads folder for the current user.
40-
# Sometimes unused if there is no external package to download
41-
# (Windows buildin features for instance).
14+
# -Destination directory
15+
# Specify a local directory where the package will be downloaded.
16+
# By default, use the downloads folder for the current user.
17+
# Sometimes unused if there is no external package to download
18+
# (Windows buildin features for instance).
4219
#
43-
# -ForceDownload
44-
# Force a download even if the package is already downloaded.
45-
# Sometimes unused if there is no external package to download.
20+
# -ForceDownload
21+
# Force a download even if the package is already downloaded.
22+
# Sometimes unused if there is no external package to download.
4623
#
47-
# -GitHubActions
48-
# When used in a GitHub Action workflow, make sure that the required
49-
# environment variables are propagated to subsequent jobs. Ignored when
50-
# the installation of the package does not need specific variables.
24+
# -GitHubActions
25+
# When used in a GitHub Action workflow, make sure that the required
26+
# environment variables are propagated to subsequent jobs. Ignored when
27+
# the installation of the package does not need specific variables.
5128
#
52-
# -NoInstall
53-
# Do not install the package. Download it only. By default, the package
54-
# is installed.
29+
# -NoInstall
30+
# Do not install the package. Download it only. By default, the package
31+
# is installed.
5532
#
56-
# -NoPause
57-
# Do not wait for the user to press <enter> at end of execution.
58-
# By default, execute a "pause" instruction at the end of execution,
59-
# which is useful when the script was run from Windows Explorer.
33+
# -NoPause
34+
# Do not wait for the user to press <enter> at end of execution.
35+
# By default, execute a "pause" instruction at the end of execution,
36+
# which is useful when the script was run from Windows Explorer.
6037
#
6138
#-----------------------------------------------------------------------------
6239

install-dektec.ps1

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
5-
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
8-
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
14-
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
26-
#
27-
#-----------------------------------------------------------------------------
4+
# BSD-2-Clause license, see LICENSE.txt file
285
#
296
# Download and install the Dektec DTAPI for Windows.
307
# See parameters documentation in install-common.ps1.

install-dependencies.ps1

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
5-
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
8-
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
14-
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
26-
#
27-
#-----------------------------------------------------------------------------
4+
# BSD-2-Clause license, see LICENSE.txt file
285
#
296
# Download and install Dependencies (modern version of Dependency Walker).
307
# See parameters documentation in install-common.ps1.

install-doxygen.ps1

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
5-
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
8-
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
14-
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
26-
#
27-
#-----------------------------------------------------------------------------
4+
# BSD-2-Clause license, see LICENSE.txt file
285
#
296
# Download and install Doxygen for Windows.
307
# See parameters documentation in install-common.ps1.

install-gimp.ps1

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
5-
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
8-
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
14-
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
26-
#
27-
#-----------------------------------------------------------------------------
4+
# BSD-2-Clause license, see LICENSE.txt file
285
#
296
# Download and install GIMP for Windows.
307
# See parameters documentation in install-common.ps1.

install-git-lfs.ps1

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
5-
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
8-
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
14-
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
26-
#
27-
#-----------------------------------------------------------------------------
4+
# BSD-2-Clause license, see LICENSE.txt file
285
#
296
# Download and install Git LFS extension (Large File Storage) for Windows.
307
# See parameters documentation in install-common.ps1.

install-git.ps1

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,7 @@
11
#-----------------------------------------------------------------------------
22
#
33
# Copyright (c) 2022, Thierry Lelegard
4-
# All rights reserved.
5-
#
6-
# Redistribution and use in source and binary forms, with or without
7-
# modification, are permitted provided that the following conditions are met:
8-
#
9-
# 1. Redistributions of source code must retain the above copyright notice,
10-
# this list of conditions and the following disclaimer.
11-
# 2. Redistributions in binary form must reproduce the above copyright
12-
# notice, this list of conditions and the following disclaimer in the
13-
# documentation and/or other materials provided with the distribution.
14-
#
15-
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16-
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17-
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18-
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19-
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20-
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21-
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22-
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23-
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24-
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
25-
# THE POSSIBILITY OF SUCH DAMAGE.
26-
#
27-
#-----------------------------------------------------------------------------
4+
# BSD-2-Clause license, see LICENSE.txt file
285
#
296
# Download and install Git for Windows.
307
# See parameters documentation in install-common.ps1.

0 commit comments

Comments
 (0)