Skip to content

Commit

Permalink
Do not add release tag to .deb names
Browse files Browse the repository at this point in the history
  • Loading branch information
Blad3Mak3r authored Sep 4, 2022
1 parent 0a4054a commit 0244d8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fpm.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh

echo "Compiling AMD64 .deb"
fpm --debug --no-depends -m BladeMaker -s dir -t deb -n psql-dumper -v $RELEASE_TAG -p bin/psql-dumper_${RELEASE_TAG}_amd64.deb bin/psql-dumper-x86_64-linux=/usr/local/bin/psql-dumper
fpm --debug --no-depends -m BladeMaker -s dir -t deb -n psql-dumper -v $RELEASE_TAG -p bin/psql-dumper_amd64.deb bin/psql-dumper-x86_64-linux=/usr/local/bin/psql-dumper

echo "Compiling i386 .deb"
fpm --debug --no-depends -m BladeMaker -s dir -t deb -n psql-dumper -v $RELEASE_TAG -a i386 -p bin/psql-dumper_${RELEASE_TAG}_i386.deb bin/psql-dumper-i386-linux=/usr/local/bin/psql-dumper
fpm --debug --no-depends -m BladeMaker -s dir -t deb -n psql-dumper -v $RELEASE_TAG -a i386 -p bin/psql-dumper_i386.deb bin/psql-dumper-i386-linux=/usr/local/bin/psql-dumper

0 comments on commit 0244d8c

Please sign in to comment.