after_install: use . not source in bourne shell (#4639)
Another dumb mistake when using bourne shell: ``` /var/lib/dpkg/info/nimbus-beacon-node.postinst: 23: source: not found ``` Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
7d599185e0
commit
3d3d17aad9
|
@ -3,7 +3,7 @@ set -e
|
||||||
|
|
||||||
DISTRO="UNKNOWN"
|
DISTRO="UNKNOWN"
|
||||||
if [ -r /etc/os-release ]; then
|
if [ -r /etc/os-release ]; then
|
||||||
source /etc/os-release
|
. /etc/os-release
|
||||||
DISTRO="${ID}"
|
DISTRO="${ID}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue