feat: bump install names

This commit is contained in:
2024-06-20 18:32:44 +01:00
parent 94c298a26f
commit e728ed98a3
2 changed files with 0 additions and 0 deletions

14
script/install.d/00-os.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# Print operating system information.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
sw_vers
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
cat /etc/os-release
else
echo "Unknown OS: $OSTYPE"
fi