v01
This commit is contained in:
18
scripts/install_deps.sh
Executable file
18
scripts/install_deps.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user