Skip to content

Commit 0fa6c15

Browse files
Allow running on FreeBSD 13.*, 14.* and 15.* (#1136)
* Allow running on FreeBSD 13.*, 14.* and 15.* * Update code --------- Co-authored-by: Arkadii Yakovets <[email protected]>
1 parent a0831bc commit 0fa6c15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nettacker/core/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def print_logo():
6666
log.reset_color()
6767

6868
def check_dependencies(self):
69-
if sys.platform not in {"darwin", "linux"}:
69+
if sys.platform not in {"darwin", "freebsd13", "freebsd14", "freebsd15", "linux"}:
7070
die_failure(_("error_platform"))
7171

7272
try:

0 commit comments

Comments
 (0)