18 lines
285 B
Bash
Executable File
18 lines
285 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PROJECT='icingadb-redis'
|
|
|
|
now=$(date +%s)
|
|
|
|
package_version="7.0.2${now}"
|
|
commit="bogus"
|
|
tarball="icingadb-redis_empty.orig.tar.gz"
|
|
branch="bogus"
|
|
|
|
printf '%s\t%s\t%s\t%s' \
|
|
"${package_version}" \
|
|
"${commit}" \
|
|
"${tarball}" \
|
|
"${branch}" \
|
|
> "${PROJECT}.version"
|