Skip to content

Commit

Permalink
generate-entry: respect DBX_CONTAINER_MANAGER variable (#1269)
Browse files Browse the repository at this point in the history
  • Loading branch information
Meister1593 authored Mar 11, 2024
1 parent b7f9c57 commit f10a036
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions distrobox-generate-entry
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
# along with distrobox; if not, see <http://www.gnu.org/licenses/>.

# POSIX
# Optional env variables:
# DBX_CONTAINER_MANAGER

# Despite of running this script via SUDO/DOAS being not supported (the
# script itself will call the appropriate tool when necessary), we still want
Expand Down Expand Up @@ -77,6 +79,8 @@ done
[ "${verbose}" = "true" ] && verbose=1
[ "${verbose}" = "false" ] && verbose=0

[ -n "${DBX_CONTAINER_MANAGER}" ] && container_manager="${DBX_CONTAINER_MANAGER}"

# Print usage to stdout.
# Arguments:
# None
Expand Down

0 comments on commit f10a036

Please sign in to comment.