You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"mkisofs": "Install mkisofs from your package manager. Some distros ship genisoimage which is a fork of mkisofs. Create a symlink for it like this: ln -s $(which genisoimage) /usr/bin/mkisofs",
55
+
},
56
+
"darwin": {
57
+
"ln": "Install ln from your package manager",
58
+
"hdiutil": "Install hdiutil from your package manager",
Copy file name to clipboardExpand all lines: cmd/packaging/linux-deb.go
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,9 @@ var LinuxDebTask = &packagingTask{
33
33
}
34
34
returnoutputFileName, nil
35
35
},
36
-
requiredTools: map[string][]string{
37
-
"linux": {"dpkg-deb"},
36
+
requiredTools: map[string]map[string]string{
37
+
"linux": {
38
+
"makepkg": "You need to be on Debian, Ubuntu or another distro that uses apt/dpkg as package manager to use this. Installing dpkg on other distros is hard and dangerous.",
"makepkg": "You need to be on Arch Linux or another distro that uses pacman as package manager to use this. Installing makepkg on other distros is hard and dangerous.",
0 commit comments