mirror of
https://github.com/Ed94/metadesk.git
synced 2026-07-16 14:31:25 -07:00
16 lines
323 B
Bash
16 lines
323 B
Bash
#!/bin/bash
|
|
|
|
###### Get Paths ##############################################################
|
|
og_path=$PWD
|
|
cd "$(dirname "$0")"
|
|
cd ..
|
|
|
|
echo ~~~ Running Sanity Tests ~~~
|
|
mkdir -p build
|
|
cd build
|
|
./sanity_tests.exe
|
|
./unicode_test.exe
|
|
|
|
###### Restore Path ###########################################################
|
|
cd $og_path
|