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