Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 141 Bytes

File metadata and controls

11 lines (9 loc) · 141 Bytes

Bash check platform

Back

if [ "$(uname)" == "Darwin" ]; then
  # Darwin logic
else
  # Other logic
fi