mirror of
https://github.com/zhigang1992/viff.git
synced 2026-01-12 22:53:25 +08:00
13 lines
195 B
Bash
Executable File
13 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
command_exist() {
|
|
hash $1 2>/dev/null
|
|
}
|
|
|
|
if command_exist sw_vers; then # Mac
|
|
sh ./mac-pre-install.sh
|
|
elif command_exist lscpu; then # Linux
|
|
sh ./ubuntu-pre-install.sh
|
|
fi
|
|
|
|
exit 0 |