feat: bump install names
This commit is contained in:
14
script/install.d/00-os.sh
Normal file
14
script/install.d/00-os.sh
Normal 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
|
||||
Reference in New Issue
Block a user