13 lines
356 B
Bash
13 lines
356 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
SOURCE=${BASH_SOURCE[0]}
|
||
|
while [ -L "$SOURCE" ]; do
|
||
|
DIR=$(cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd)
|
||
|
SOURCE=$(readlink "$SOURCE")
|
||
|
[[ $SOURCE != /* ]] && SOURCE=$DIR/$SOURCE
|
||
|
done
|
||
|
DIR=$(cd -P "$(dirname "$SOURCE")" >/dev/null 2>&1 && pwd)
|
||
|
|
||
|
ROOT_DIR=$(realpath ${DIR}/..)
|
||
|
|
||
|
cd -P ${ROOT_DIR} && dart run ffigen --config ffigen.yaml
|