From 8651cf5a110217d4f0cca6b2a1fe08865ddf1857 Mon Sep 17 00:00:00 2001 From: thomas Date: Thu, 5 Mar 2026 14:26:59 +0100 Subject: [PATCH] Actualiser detect.sh --- detect.sh | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/detect.sh b/detect.sh index e69de29..bb6e5ba 100644 --- a/detect.sh +++ b/detect.sh @@ -0,0 +1,21 @@ +#!/usr/bin/env bash + +if command -v docker &>/dev/null +then + echo docker + exit +fi + +if command -v apt &>/dev/null +then + echo apt + exit +fi + +if command -v apk &>/dev/null +then + echo apk + exit +fi + +echo unknown \ No newline at end of file