mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-04-21 15:04:19 +02:00
9 lines
170 B
Bash
Executable File
9 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
unamestr=$(uname)
|
|
|
|
if [[ $unamestr == "Darwin" ]]; then
|
|
otool -L mapmap.app/Contents/MacOS/mapmap
|
|
elif [[ $unamestr == "Linux" ]]; then
|
|
ldd mapmap
|
|
fi
|