8 lines
176 B
Bash
Executable file
8 lines
176 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
|
echo "Install Linux dependencies..."
|
|
script/install-linux-deps
|
|
else
|
|
echo "Install macOS dependencies..."
|
|
fi
|