From 795f45e607aa2799229f64d9b2753052da18319b Mon Sep 17 00:00:00 2001 From: Valerie Wolfe Date: Fri, 14 Jun 2024 13:49:17 -0400 Subject: [PATCH] fixed base install --- justfile | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/justfile b/justfile index f0e51d0..b13a8d1 100644 --- a/justfile +++ b/justfile @@ -6,12 +6,14 @@ build TARGET: just {{TARGET}}/build install TARGET='all' DIR="~/.bin/": - if {{TARGET}} = all { - just install scripts {{DIR}} - just install mkwin {{DIR}} - just install path-convert {{DIR}} - just install qdls {{DIR}} - } else { - just {{TARGET}}/install `realpath {{DIR}}` - } + #!/usr/bin/bash + if [[ {{TARGET}} == 'all' ]]; then + just install scripts {{DIR}} + just install mkwin {{DIR}} + just install path-convert {{DIR}} + just install qdls {{DIR}} + chmod +x {{DIR}}/qdls + else + just {{TARGET}}/install `realpath {{DIR}}` + fi