diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index c1a9eb3..4c9dc4d 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -46,7 +46,7 @@ jobs: DYLAN_CATALOG: ext/pacman-catalog DYLAN: dylan-root run: | - exe="$(realpath ${DYLAN}/bin/deft-app)" + exe="$(realpath ${DYLAN}/bin/deft)" export DYLAN_CATALOG="$(realpath ${DYLAN_CATALOG})" ${exe} new library --force-package abc strings@1.1 cd abc diff --git a/Makefile b/Makefile index da51427..0e2fecf 100644 --- a/Makefile +++ b/Makefile @@ -27,9 +27,12 @@ build-with-version: remove-deft-artifacts dylan-compiler -build -unify deft-app; \ cp -p $${orig} $${file} +# Until the install-deft GitHub Action is no longer referring to deft-app +# we also create a link named deft-app. really-install: mkdir -p $(DYLAN)/bin - cp _build/sbin/deft-app $(DYLAN)/bin/ + cp _build/sbin/deft-app $(DYLAN)/bin/deft + ln -f $(DYLAN)/bin/deft $(DYLAN)/bin/deft-app install: build-with-version really-install