From e94e866deae626b84aa9c0affe3547ce7cc235c4 Mon Sep 17 00:00:00 2001 From: Erdem Yerebasmaz Date: Thu, 16 May 2024 13:50:42 +0300 Subject: [PATCH] Make building libraries optional on bootstrap step --- lib/bindings/bindings-flutter/justfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/bindings/bindings-flutter/justfile b/lib/bindings/bindings-flutter/justfile index b930daf..eef1e7f 100644 --- a/lib/bindings/bindings-flutter/justfile +++ b/lib/bindings/bindings-flutter/justfile @@ -7,14 +7,14 @@ default: just --list --unsorted # Initializes the workspace -bootstrap frb='true': +bootstrap frb='true' build='false': just clean @if {{frb}} == true; then just frb; fi just init just gen - just build - melos build - just link + @if {{build}} == true; then just build; fi + @if {{build}} == true; then melos build; fi + @if {{build}} == true; then just link; fi just check # Install flutter_rust_bridge_codegen dependencies