Skip to content

Commit cd6c820

Browse files
committed
v0.4.1 [skip ci]
1 parent 2a0ea12 commit cd6c820

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
@@ -42,26 +42,26 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
4242

4343
### Executable
4444

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

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

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

5555
```ps1
5656
# linux example
57-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp_linux"
57+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.1/setup_cpp_linux"
5858
chmod +x setup_cpp_linux
5959
sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6060
```
6161

6262
```ps1
6363
# mac example
64-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp_mac"
64+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.1/setup_cpp_mac"
6565
chmod +x setup_cpp_mac
6666
sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6767
```
@@ -71,22 +71,22 @@ For the tools, instead of `true` that chooses the default version, you can pass
7171

7272
### With Nodejs
7373

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

7676
On Windows:
7777

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

8080
```ps1
8181
# open shell as admin
82-
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp.js"
82+
curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.4.1/setup_cpp.js"
8383
node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
8484
```
8585

8686
On Linux or Mac:
8787

8888
```ps1
89-
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp.js"
89+
wget "https://github.com/aminya/setup-cpp/releases/download/v0.4.1/setup_cpp.js"
9090
sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9191
```
9292

@@ -161,7 +161,7 @@ WORKDIR "/"
161161
RUN apt-get update -qq
162162
RUN apt-get install -y --no-install-recommends apt-utils
163163
RUN apt-get install -y --no-install-recommends ca-certificates wget unzip
164-
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.4.0/setup_cpp_linux"
164+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.4.1/setup_cpp_linux"
165165
RUN chmod +x ./setup_cpp_linux
166166

167167
# install llvm, cmake, ninja, ccache, and vcpkg

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.2/setup_cpp_linux"
9+
RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.4.1/setup_cpp_linux"
1010
RUN chmod +x ./setup_cpp_linux
1111

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

0 commit comments

Comments
 (0)