mirror of
https://github.com/chipsalliance/f4pga.git
synced 2025-01-03 03:43:37 -05:00
a56e870082
Signed-off-by: Pawel Czarnecki <pczarnecki@antmicro.com>
18 lines
190 B
Bash
Executable file
18 lines
190 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
case "$1" in
|
|
bin)
|
|
(
|
|
cd $(dirname "$0")
|
|
pwd
|
|
)
|
|
;;
|
|
share)
|
|
(
|
|
cd $(dirname "$0")/../share/f4pga
|
|
pwd
|
|
)
|
|
;;
|
|
esac
|