Skip to content

Commit 9206efb

Browse files
committed
v0.2.2
1 parent a03c25a commit 9206efb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,26 @@ Tip: You can automate downloading using `wget`, `curl` or other similar tools.
4040

4141
### Executable
4242

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

4545
An example that installs llvm, cmake, ninja, ccache, and conan:
4646

4747
```ps1
4848
# windows example (open shell as admin)
49-
curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.2.1/setup_cpp_windows.exe"
49+
curl -O "https://github.com/aminya/setup-cpp/releases/download/v0.2.2/setup_cpp_windows.exe"
5050
./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --conan true
5151
```
5252

5353
```ps1
5454
# linux example
55-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1/setup_cpp_linux"
55+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2/setup_cpp_linux"
5656
chmod +x setup_cpp_linux
5757
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --conan true
5858
```
5959

6060
```ps1
6161
# mac example
62-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1/setup_cpp_mac"
62+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2/setup_cpp_mac"
6363
chmod +x setup_cpp_mac
6464
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --conan true
6565
```
@@ -69,20 +69,20 @@ For the tools, instead of `true`, which chooses the default version, you can pas
6969

7070
### With Nodejs
7171

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

7474
On Windows
7575

7676
```ps1
7777
# open shell as admin
78-
curl "https://github.com/aminya/setup-cpp/releases/download/v0.2.1/setup_cpp.js"
78+
curl "https://github.com/aminya/setup-cpp/releases/download/v0.2.2/setup_cpp.js"
7979
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --conan true
8080
```
8181

8282
On Linux or Mac:
8383

8484
```ps1
85-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.1/setup_cpp.js"
85+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.2.2/setup_cpp.js"
8686
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --conan true
8787
```
8888

@@ -141,7 +141,7 @@ WORKDIR "/"
141141
RUN apt-get update -qq
142142
RUN apt-get install -y --no-install-recommends apt-utils
143143
RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
144-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.2.1/setup_cpp_linux"
144+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.2.2/setup_cpp_linux"
145145
RUN chmod +x ./setup_cpp_linux
146146

147147
# install llvm, cmake, ninja, ccache, and conan

0 commit comments

Comments
 (0)