We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ad345e commit 0f71cdeCopy full SHA for 0f71cde
1 file changed
src/util.js
@@ -29,7 +29,7 @@ let isThisDebian = false;
29
export const isDebian = () => isThisDebian
30
31
export const initUtils = () => {
32
- isThisDebian = existsSync('/etc/lsb-release');
+ isThisDebian = existsSync('/etc/debian_version');
33
tokenSecret = `Bearer ${process.env.SECRET}`;
34
allowIps = process.env.ALLOW_IP?.split(',').reduce((a, b) => {
35
a[b] = true;
0 commit comments