@@ -45,21 +45,21 @@ Tip: You can automate downloading using `wget`, `curl`, or other similar tools.
4545
4646### Executable
4747
48- Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.6.0 ) , and run it with the available options.
48+ Download the executable for your platform from [ here] ( https://github.com/aminya/setup-cpp/releases/tag/v0.6.1 ) , and run it with the available options.
4949
5050An example that installs llvm, cmake, ninja, ccache, and vcpkg:
5151
5252``` ps1
5353# windows example (open shell as admin)
54- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_windows.exe"
54+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_windows.exe"
5555./setup_cpp_windows --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
5656
5757RefreshEnv.cmd # reload the environment
5858```
5959
6060``` ps1
6161# linux example
62- wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_linux"
62+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_linux"
6363chmod +x setup_cpp_linux
6464sudo ./setup_cpp_linux --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
6565
@@ -68,7 +68,7 @@ source ~/.profile # reload the environment
6868
6969``` ps1
7070# mac example
71- wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_mac"
71+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_mac"
7272chmod +x setup_cpp_mac
7373sudo ./setup_cpp_mac --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
7474
@@ -82,15 +82,15 @@ NOTE: you will not need `sudo` if you are already a root user (e.g., in a GitLab
8282
8383### With Nodejs
8484
85- Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp.js ) , and run it with the available options.
85+ Download the ` setup_cpp.js ` file form [ here] ( https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp.js ) , and run it with the available options.
8686
8787On Windows:
8888
8989Open the shell as admin, download via ` curl ` , then install
9090
9191``` ps1
9292# open shell as admin
93- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp.js"
93+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp.js"
9494node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
9595
9696RefreshEnv.cmd # reload the environment
@@ -99,7 +99,7 @@ RefreshEnv.cmd # reload the environment
9999On Linux or Mac:
100100
101101``` ps1
102- wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp.js"
102+ wget "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp.js"
103103sudo node ./setup_cpp.js --compiler llvm --cmake true --ninja true --ccache true --vcpkg true
104104
105105source ~/.profile # reload the environment
@@ -178,7 +178,7 @@ FROM debian:bullseye
178178WORKDIR "/"
179179RUN apt-get update -qq
180180RUN apt-get install -y --no-install-recommends wget
181- RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_linux"
181+ RUN wget --no-verbose "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_linux"
182182RUN chmod +x ./setup_cpp_linux
183183
184184# install llvm, cmake, ninja, and ccache
@@ -257,7 +257,7 @@ stages:
257257 apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 1E9377A2BA9EF27F
258258
259259.setup_cpp : &setup_cpp |
260- curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.0 /setup_cpp_linux"
260+ curl -LJO "https://github.com/aminya/setup-cpp/releases/download/v0.6.1 /setup_cpp_linux"
261261 chmod +x setup_cpp_linux
262262 ./setup_cpp_linux --compiler $compiler --cmake true --ninja true --ccache true --vcpkg true
263263 source ~/.profile
0 commit comments