9 lines
210 B
Bash
Executable file
9 lines
210 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
# Install surface-linux
|
|
source "../../Surface/LinuxSurface/install.sh";
|
|
source "../Camera/install.sh";
|
|
# source "../SecureBoot/install.sh";
|
|
popd > /dev/null;
|