19 lines
411 B
Bash
Executable File
19 lines
411 B
Bash
Executable File
#!/bin/bash
|
|
##
|
|
## BSD 3-Clause License
|
|
##
|
|
## This file is part of the Basalt project.
|
|
## https://gitlab.com/VladyslavUsenko/basalt.git
|
|
##
|
|
## Copyright (c) 2019-2021, Vladyslav Usenko and Nikolaus Demmel.
|
|
## All rights reserved.
|
|
##
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
${DIR}/install_mac_os_deps.sh
|
|
else
|
|
${DIR}/install_ubuntu_deps.sh
|
|
fi
|