mirror of
https://github.com/feigeCode/navop.git
synced 2026-09-21 08:01:22 +00:00
9 lines
174 B
Bash
Executable File
9 lines
174 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
|
|
echo "Install Linux dependencies..."
|
|
script/install-linux.sh
|
|
else
|
|
echo "Install macOS dependencies..."
|
|
fi
|