From ac1fc1f6e3b62960d5cf7c01c6779cb3e1b2b838 Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 23 Nov 2023 22:54:44 +0800 Subject: improve xmakesrc pack --- scripts/makeppa | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts/makeppa') diff --git a/scripts/makeppa b/scripts/makeppa index 6421f0155..44c7b1b75 100755 --- a/scripts/makeppa +++ b/scripts/makeppa @@ -32,7 +32,7 @@ basename=xmake-$version+$patch$serie tarball=$workdir/$basename.tar.gz if [ ! -f $tarball ]; then cd core - xmake pack --autobuild=n --formats=src_targz --basename=xmake -o ../artifacts || exit -1 + xmake pack --autobuild=n --formats=targz --basename=xmake xmakesrc -o ../artifacts || exit -1 cd .. cp ./artifacts/xmake.tar.gz $tarball fi -- cgit v1.3.1 From b83dfc02b51b0c0538d547d3247c6e3246653f5b Mon Sep 17 00:00:00 2001 From: ruki Date: Thu, 23 Nov 2023 23:24:10 +0800 Subject: fix output file --- .github/workflows/macos.yml | 2 +- scripts/makeppa | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/makeppa') diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index ca9932513..b35c61e1a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -43,7 +43,7 @@ jobs: brew install gnu-tar gem install --no-document fpm cd core - xmake pack --autobuild=n --basename=xmake xmakesrc -o ../artifacts + xmake pack --autobuild=n --basename=xmake -o ../artifacts xmakesrc cd .. scripts/makeself/build-runfile.sh - uses: actions/upload-artifact@v2 diff --git a/scripts/makeppa b/scripts/makeppa index 44c7b1b75..53b559e10 100755 --- a/scripts/makeppa +++ b/scripts/makeppa @@ -32,7 +32,7 @@ basename=xmake-$version+$patch$serie tarball=$workdir/$basename.tar.gz if [ ! -f $tarball ]; then cd core - xmake pack --autobuild=n --formats=targz --basename=xmake xmakesrc -o ../artifacts || exit -1 + xmake pack --autobuild=n --formats=targz --basename=xmake -o ../artifacts xmakesrc || exit -1 cd .. cp ./artifacts/xmake.tar.gz $tarball fi -- cgit v1.3.1