script/linux 🔗
@@ -20,6 +20,7 @@ if [[ -n $apt ]]; then
libssl-dev
libzstd-dev
libvulkan1
+ libgit2-dev
)
$maysudo "$apt" install -y "${deps[@]}"
exit 0
Max Linke and Max Linke created
At least one of the dependencies requires cmake to configure the build
process.
On ubuntu libgit2-dev was missing. Debian and derivates do not install
development headers by default.
Release Notes:
- Improved Linux development setup scripts.
Co-authored-by: Max Linke <max.linke88@gmail.com>
script/linux | 1 +
1 file changed, 1 insertion(+)
@@ -20,6 +20,7 @@ if [[ -n $apt ]]; then
libssl-dev
libzstd-dev
libvulkan1
+ libgit2-dev
)
$maysudo "$apt" install -y "${deps[@]}"
exit 0