package.bash: make it work somewhat on RHEL
RHEL and CentOS do not have /etc/os-release yet. Read from /etc/redhat-release instead. Fixes https://github.com/rfjakob/gocryptfs/issues/113
This commit is contained in:
parent
d6ef283c3f
commit
c36a55e985
19
package.bash
19
package.bash
@ -3,8 +3,23 @@
|
|||||||
set -eu
|
set -eu
|
||||||
cd $(dirname "$0")
|
cd $(dirname "$0")
|
||||||
|
|
||||||
source build.bash # Builds binary and sets GITVERSION (example: v0.7-15-gf01f599)
|
# Build binary and sets $GITVERSION (example: v0.7-15-gf01f599)
|
||||||
source /etc/os-release # Sets ID (example: fedora) and VERSION_ID (example: 23)
|
source build.bash
|
||||||
|
|
||||||
|
# Set $ID (example: "fedora", "debian") and $VERSION_ID (example: "23", "8")
|
||||||
|
if [[ -e /etc/os-release ]]; then
|
||||||
|
# Modern Debian and Fedora
|
||||||
|
source /etc/os-release
|
||||||
|
elif [[ -e /etc/redhat-release ]]; then
|
||||||
|
# RHEL and CentOS
|
||||||
|
ID=$(cat /etc/redhat-release | tr ' ' '_')
|
||||||
|
VERSION_ID=""
|
||||||
|
else
|
||||||
|
echo "Could not get distribution version"
|
||||||
|
ID=unknown
|
||||||
|
VERSION_ID=.unknown
|
||||||
|
fi
|
||||||
|
|
||||||
ARCH=$(go env GOARCH)
|
ARCH=$(go env GOARCH)
|
||||||
# Build gocryptfs.1 man page
|
# Build gocryptfs.1 man page
|
||||||
./Documentation/MANPAGE-render.bash > /dev/null
|
./Documentation/MANPAGE-render.bash > /dev/null
|
||||||
|
Loading…
x
Reference in New Issue
Block a user