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:
Jakub Sokołowski 2023-02-17 14:26:23 +01:00 committed by GitHub
parent 7d599185e0
commit 3d3d17aad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ set -e
DISTRO="UNKNOWN"
if [ -r /etc/os-release ]; then
source /etc/os-release
. /etc/os-release
DISTRO="${ID}"
fi