Skip to content

Commit 4b7a956

Browse files
committed
v0.5.2 [skip ci]
1 parent 3b3e893 commit 4b7a956

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -43,26 +43,26 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
4343

4444
### Executable
4545

46-
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.5.1), and run it with the available options.
46+
Download the executable for your platform from [here](https://github.com/aminya/setup-cpp/releases/tag/v0.5.2), and run it with the available options.
4747

4848
An example that installs llvm, cmake, ninja, ccache, and vcpkg:
4949

5050
```ps1
5151
# windows example (open shell as admin)
52-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.1/setup_cpp_windows.exe"
52+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.2/setup_cpp_windows.exe"
5353
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5454
```
5555

5656
```ps1
5757
# linux example
58-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.1/setup_cpp_linux"
58+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.2/setup_cpp_linux"
5959
chmod +x setup_cpp_linux
6060
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6161
```
6262

6363
```ps1
6464
# mac example
65-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.1/setup_cpp_mac"
65+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.2/setup_cpp_mac"
6666
chmod +x setup_cpp_mac
6767
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6868
```
@@ -72,22 +72,22 @@ For the tools, instead of `true` that chooses the default version, you can pass
7272

7373
### With Nodejs
7474

75-
Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.5.1/setup_cpp.js), and run it with the available options.
75+
Download the `setup_cpp.js` file form [here](https://github.com/aminya/setup-cpp/releases/download/v0.5.2/setup_cpp.js), and run it with the available options.
7676

7777
On Windows:
7878

7979
Open the shell as admin, download via `curl`, then install
8080

8181
```ps1
8282
# open shell as admin
83-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.1/setup_cpp.js"
83+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.5.2/setup_cpp.js"
8484
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8585
```
8686

8787
On Linux or Mac:
8888

8989
```ps1
90-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.1/setup_cpp.js"
90+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.5.2/setup_cpp.js"
9191
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9292
```
9393

@@ -162,7 +162,7 @@ WORKDIR "/"
162162
RUN apt-get update -qq
163163
RUN apt-get install -y --no-install-recommends apt-utils
164164
RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
165-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.1/setup_cpp_linux"
165+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.2/setup_cpp_linux"
166166
RUN chmod +x ./setup_cpp_linux
167167

168168
# install llvm, cmake, ninja, and ccache

building/docker/debian.dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR "/"
66
RUN apt-get update -qq
77
RUN apt-get install -y --no-install-recommends apt-utils
88
RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
9-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.1/setup_cpp_linux"
9+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.5.2/setup_cpp_linux"
1010
RUN chmod +x ./setup_cpp_linux
1111

1212
# install llvm, cmake, ninja, and ccache

0 commit comments

Comments
 (0)