mirror of
https://github.com/loewexy/pdnsmanager.git
synced 2025-08-16 21:41:27 +02:00
13 lines
262 B
Bash
Executable file
13 lines
262 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
if test $TRAVIS_TAG
|
|
then
|
|
utils/make-package.sh pdnsmanager-${TRAVIS_TAG:1} ${TRAVIS_TAG:1}
|
|
utils/make-package.sh pdnsmanager-$TRAVIS_COMMIT $TRAVIS_COMMIT
|
|
else
|
|
utils/make-package.sh pdnsmanager-$TRAVIS_COMMIT $TRAVIS_COMMIT
|
|
fi
|
|
|
|
exit 0
|
|
|