mirror of
https://github.com/Ed94/metadesk.git
synced 2026-06-12 23:51:37 -07:00
20 lines
467 B
Bash
Executable File
20 lines
467 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eo pipefail
|
|
|
|
###### Get Paths ##############################################################
|
|
og_path=$PWD
|
|
cd "$(dirname "$0")"
|
|
cd ..
|
|
root_path=$PWD
|
|
bin_path=$root_path/bin
|
|
|
|
###### Bin Scripts ############################################################
|
|
$bin_path/build_tests.sh
|
|
$bin_path/build_examples.sh
|
|
$bin_path/run_tests.sh
|
|
$bin_path/run_examples.sh
|
|
|
|
###### Restore Path ###########################################################
|
|
cd $og_path
|