18 lines
299 B
Bash
Executable File
18 lines
299 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PROJECT='icinga-php-common'
|
|
|
|
now=$(date +%s)
|
|
|
|
package_version="1.0.0${now}00000000"
|
|
commit="bogus"
|
|
tarball="icinga-php-common_empty.orig.tar.gz"
|
|
branch="bogus"
|
|
|
|
printf '%s\t%s\t%s\t%s' \
|
|
"${package_version}" \
|
|
"${commit}" \
|
|
"${tarball}" \
|
|
"${branch}" \
|
|
> "${PROJECT}.version"
|