aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-debian-dev/bootstrap/get-debian-version.bash
blob: 9cd468a906021752a0d9f50a741eb18791c6ce9f (plain)
1
2
3
4
5
6
7
8
9
10
11
#! /usr/bin/env bash

if [ -f /etc/os-release ]; then
    . /etc/os-release
    if [ "$ID" = "debian" ]; then
        echo "$VERSION_ID"
        exit 0
    fi
fi

exit 1