Skip to content

Commit 1e9cb5b

Browse files
committed
Fix git checkout
1 parent bdb61b9 commit 1e9cb5b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfiles/mods/Dockerfile-7.3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ RUN set -x \
379379
# ---- Installing PHP Extension: swoole ----
380380
&& git clone https://github.com/swoole/swoole-src /tmp/swoole \
381381
&& cd /tmp/swoole \
382-
&& git checkout git checkout $(git describe --abbrev=0 --tags) \
382+
&& git checkout $(git describe --abbrev=0 --tags) \
383383
&& phpize \
384384
&& ./configure \
385385
--enable-openssl \

build/ansible/group_vars/all/mods.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ extensions_available:
829829
7.3:
830830
type: git
831831
git_url: https://github.com/swoole/swoole-src
832-
git_ref: git checkout $(git describe --abbrev=0 --tags)
832+
git_ref: $(git describe --abbrev=0 --tags)
833833
command: |
834834
phpize \
835835
&& ./configure \

0 commit comments

Comments
 (0)