From fb4f53644678d7f1bc4353a8f5fe4579d1053a34 Mon Sep 17 00:00:00 2001 From: egor-white Date: Wed, 4 Feb 2026 18:05:11 +0300 Subject: [PATCH] fix typo --- rust/justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/justfile b/rust/justfile index f0a08d3..e2f5ff0 100644 --- a/rust/justfile +++ b/rust/justfile @@ -114,7 +114,7 @@ _build_luajit target_arch: fi -_instal_rust_target target: +_install_rust_target target: #!/usr/bin/env bash if ! rustup target list --installed | grep -q "{{target}}"; then echo "Installing missing target: {{target}}" @@ -147,7 +147,7 @@ build-android *args: prepare-android just _build_netfilter_libs $t just _build_luajit $t - just _instal_rust_target $t + just _install_rust_target $t NETFILTER_LIBS=$NETFILTER_LIBS-$t LUAJIT_LIBS=$LUAJIT_LIBS-$t cargo ndk -t $t --platform $ANDROID_API build {{args}} ) done