diff options
author | John Estabrook <jestabro@vyos.io> | 2025-03-30 14:28:06 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2025-03-30 14:28:55 -0500 |
commit | b55504a694731fa6d3cbb82e35f808780382718d (patch) | |
tree | c6ed97cd1fcb0da80e66f7041abd064456edd2eb /Makefile | |
parent | 79b357a4afc661a9f9e6ee618ac0ac7ef2a4b20f (diff) | |
download | vyos-1x-b55504a694731fa6d3cbb82e35f808780382718d.tar.gz vyos-1x-b55504a694731fa6d3cbb82e35f808780382718d.zip |
T7289: fix typo in git submodule status check
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ op_xml_obj = $(op_xml_src:.xml.in=.xml) .ONESHELL: libvyosconfig: if test ! -f $(LIBVYOSCONFIG_BUILD_PATH); then - if ! echo $(firstword $(LIBVYOSCONFIG_STATUS))|grep -Eq '^[0-9]'; then + if ! echo $(firstword $(LIBVYOSCONFIG_STATUS))|grep -Eq '^[a-z0-9]'; then git submodule sync; git submodule update --init --remote fi rm -rf /tmp/libvyosconfig && mkdir /tmp/libvyosconfig |