Skip to content

Commit 3a1cc6f

Browse files
committed
Change the location of libwebsockets from official website to GitHub mirror repo
Change the location of the libwebsockets source code from the official website to the GitHub mirror repository
1 parent 6d68c83 commit 3a1cc6f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT}
77
RUN apt-get update && \
88
apt-get install -qq -y git libssl-dev libcurl4-openssl-dev uncrustify cmake g++
99

10-
RUN git clone https://libwebsockets.org/repo/libwebsockets --depth 1 --branch v4.2-stable && \
10+
RUN git clone https://github.com/warmcat/libwebsockets --depth 1 --branch v4.2-stable && \
1111
cd libwebsockets && \
1212
mkdir build && \
1313
cd build && \

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
sudo apt-get install -y libssl-dev libcurl4-openssl-dev uncrustify valgrind
1919
- name: Prepare libwebsockets
2020
run: |
21-
git clone https://libwebsockets.org/repo/libwebsockets --depth 1 --branch v4.2-stable
21+
git clone https://github.com/warmcat/libwebsockets --depth 1 --branch v4.2-stable
2222
cd libwebsockets
2323
mkdir build
2424
cd build

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ CLIENT_REPO_ROOT=${PWD}/c
1717
sudo apt-get install libssl-dev libcurl4-openssl-dev uncrustify
1818

1919
# Build pre-requisite: libwebsockets
20-
git clone https://libwebsockets.org/repo/libwebsockets --depth 1 --branch v4.2-stable
20+
git clone https://github.com/warmcat/libwebsockets --depth 1 --branch v4.2-stable
2121
cd libwebsockets
2222
mkdir build
2323
cd build

0 commit comments

Comments
 (0)