#!/bin/bash

ORIGINAL_PWD=$(pwd)
export ORIGINAL_PWD

SCRIPT_DIR=$(dirname $(realpath "$0"))

cd $SCRIPT_DIR

source .install.sh

python3 .smartlocate.py $*

exit $?
