From 3a475ce210ba61e54e2a5c4b77c49acb243e8b8f Mon Sep 17 00:00:00 2001 From: Marcin Puc Date: Wed, 22 Mar 2023 12:55:39 +0100 Subject: [PATCH] Fix faulty hardlink in release tarball (#1669) Fixes #1664 The cause was a duplicate entry in the `tar` makefile invocation, as well as `tar` itself happily producing an additional bogus hardlink in the archive. --- Makefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Makefile b/Makefile index 9838b9c4f0..606b92479a 100644 --- a/Makefile +++ b/Makefile @@ -252,7 +252,6 @@ release-tarball: ## Create tarball for release web/package.json \ web/public \ web/src \ - web/package.json \ web/tsconfig.* \ web/*.ts \ web/pnpm-lock.yaml \