Skip to content

Commit

Permalink
chore: fix Dockerfile building error
Browse files Browse the repository at this point in the history
Co-authored-by: Jim Lee <[email protected]>
  • Loading branch information
Larvan2 and jimlee2048 committed Oct 16, 2023
1 parent df318b2 commit 64a0c99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN apk add --no-cache --virtual .build-tools git g++ build-base linux-headers c
install -d /usr/include/date/ && \
install -m644 libcron/externals/date/include/date/* /usr/include/date/ && \
cd .. && \
git clone https://github.com/ToruNiina/toml11 --depth=1 && \
git clone https://github.com/ToruNiina/toml11 --branch v3.7.1 --depth=1 && \
cd toml11 && \
cmake -DCMAKE_CXX_STANDARD=11 . && \
make install -j $THREADS && \
Expand Down
2 changes: 1 addition & 1 deletion scripts/build.alpine.release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ cmake -DCMAKE_BUILD_TYPE=Release .
make libcron install -j2
cd ..

git clone https://github.com/ToruNiina/toml11 --depth=1
git clone https://github.com/ToruNiina/toml11 --branch v3.7.1 --depth=1 && \
cd toml11
cmake -DCMAKE_CXX_STANDARD=11 .
make install -j4
Expand Down

0 comments on commit 64a0c99

Please sign in to comment.