mirror of
https://github.com/tstack/lnav
synced 2024-11-15 18:13:10 +00:00
14 lines
206 B
Bash
Executable File
14 lines
206 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
if test x"${TRAVIS_BUILD_DIR}" == x""; then
|
|
exit 0
|
|
fi
|
|
|
|
cp lnav ${TRAVIS_BUILD_DIR}/
|
|
cd ${TRAVIS_BUILD_DIR}
|
|
|
|
ldd lnav
|
|
VERSION=`git describe --tags`
|
|
zip lnav-${VERSION}-linux-64bit.zip lnav
|