f4pga/f4pga-env

19 lines
190 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -e
case "$1" in
bin)
(
cd $(dirname "$0")
pwd
)
;;
share)
(
cd $(dirname "$0")/../share/f4pga
pwd
)
;;
esac