Skip to content

Commit

Permalink
configure: Don't try to update submodules if git is not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
lutoma committed Nov 11, 2023
1 parent 4f06ee0 commit 871e04d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ function w {
FIND=$(command -v gfind || command -v find)

# Update submodules
git submodule update --init 1> /dev/null
[ -x "$(command -v git)" ] && git submodule update --init 1> /dev/null

# Make sure config.h exists on first build
if [ ! -f ".config" ]; then
Expand Down

0 comments on commit 871e04d

Please sign in to comment.