From 6eea2ea17733e84e4fc2a78efc71f9d00faf3568 Mon Sep 17 00:00:00 2001 From: Sergio Date: Wed, 22 Oct 2025 18:44:05 +0200 Subject: [PATCH] fix: makefile workflow was not downloading readline library --- .github/workflows/makefile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index eddbbf2..cca06e1 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -13,7 +13,7 @@ jobs: uses: actions/checkout@v3 - name: Set up Prerequisites - run: sudo apt install build-essential + run: sudo apt install build-essential libreadline-dev - name: Show Make Version run: make --version