Peter M. Groen
/
FlashMQ
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
78dcaba6bf806688cbe8f8cc2d9cdd54f248a113
Authored by
Wiebe Cazemier
2022-05-07 13:50:34 +0200
1 parent
e2d46eb0
Fix debian detection error in install script
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
debian/preinst
debian/preinst
View file @
78dcaba
1
1
#!/bin/bash -e
2
2
3
-if [[ ! -f /etc/lsb-release
||
! -f /etc/debian_version ]]; then
3
+if [[ ! -f /etc/lsb-release
&&
! -f /etc/debian_version ]]; then
4
4
echo "This is not a Debian or Ubuntu based system? Hmm"
5
5
exit 1
6
6
fi
...
...