aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-debian-dev/bootstrap/get-debian-version.bash
blob: 305e6285b5f33a9d0deba6b4edd0d4bea5a897b6 (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
else

exit 1