mirror of
https://github.com/loewexy/pdnsmanager.git
synced 2025-01-15 18:52:20 +01: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
|
|
|