Skip to content

Commit

Permalink
Set osx as the os name
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Eisinger committed Dec 18, 2019
1 parent e322cea commit 8886b52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions externals/get-os-distro.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ get_current_os_name() {

local uname=$(uname)
if [ "$uname" = "Darwin" ]; then
echo "mac"
echo "osx"
return 0
elif [ "$uname" = "Linux" ]; then
local linux_platform_name
Expand All @@ -139,7 +139,7 @@ get_legacy_os_name() {

local uname=$(uname)
if [ "$uname" = "Darwin" ]; then
echo "mac"
echo "osx"
return 0
else
if [ -e /etc/os-release ]; then
Expand Down

0 comments on commit 8886b52

Please sign in to comment.