mirror of
https://github.com/loewexy/pdnsmanager.git
synced 2025-01-27 07:54:09 +01:00
13 lines
212 B
Bash
Executable file
13 lines
212 B
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
if test $TRAVIS_TAG
|
|
then
|
|
utils/make-package.sh pdnsmanager-$TRAVIS_TAG
|
|
utils/make-package.sh pdnsmanager-$TRAVIS_COMMIT
|
|
else
|
|
utils/make-package.sh pdnsmanager-$TRAVIS_COMMIT
|
|
fi
|
|
|
|
exit 0
|
|
|