From edf2fed12dccc72522c75073aaed6a9b69170514 Mon Sep 17 00:00:00 2001 From: Valerie Wolfe Date: Fri, 14 Jun 2024 13:53:36 -0400 Subject: [PATCH] just: moved qdls chmod from base 'install all' script to qdls 'install' script --- justfile | 1 - qdls/justfile | 5 +++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index b13a8d1..bf06d62 100644 --- a/justfile +++ b/justfile @@ -12,7 +12,6 @@ install TARGET='all' DIR="~/.bin/": just install mkwin {{DIR}} just install path-convert {{DIR}} just install qdls {{DIR}} - chmod +x {{DIR}}/qdls else just {{TARGET}}/install `realpath {{DIR}}` fi diff --git a/qdls/justfile b/qdls/justfile index 95af48e..7b74ce7 100644 --- a/qdls/justfile +++ b/qdls/justfile @@ -3,8 +3,9 @@ alias b := build alias i := install build: - dos dotnet warp + dos dotnet warp install DIR: build - mv qdls.exe {{DIR}}/qdls + chmod +x qdls.exe + mv qdls.exe {{DIR}}/qdls