From 5a5372acc49db2763659f59a8a8dde25b607b2b9 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Mon, 29 Jun 2026 00:52:35 -0700 Subject: GNUmakefile: Change location of tar file ‘make package’ complains that the directory contents changed while trying to make the tarball. I assume that's because the tarball is made in the directory that's being packaged. Moving it should fix this. --- .builds/repo.yml | 2 +- GNUmakefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.builds/repo.yml b/.builds/repo.yml index 5180c77..9de5939 100644 --- a/.builds/repo.yml +++ b/.builds/repo.yml @@ -9,6 +9,6 @@ tasks: cd emacs-config make - upload: | - cd emacs-config/public + cd emacs-config acurl -f "https://pages.sr.ht/publish/ryuslash.srht.site/emacs-config/" \ -Fcontent=@emacs-config.tar.gz diff --git a/GNUmakefile b/GNUmakefile index 20f90fc..03f5b00 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -137,7 +137,7 @@ package: \ $(OUTDIR)/$(guile (get-module-version "oni-web")) \ $(OUTDIR)/$(guile (get-module-version "oni-yaml")) \ $(OUTDIR)/$(guile (get-multifile-module-version "oni-yasnippet")) - cd public && tar cvzf emacs-config.tar.gz . + cd public && tar cvzf ../emacs-config.tar.gz . clean: rm -rfv .eldev public -- cgit v1.3-2-g0d8e