1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 23:42:31 +03:00

Add a script to compute the files to watch for changes to the packages.

This commit is contained in:
Rob Rix 2019-11-01 11:16:30 -04:00
parent 1e0ec64731
commit 547617a3b9
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7

17
script/ghci-flags-dependencies Executable file
View File

@ -0,0 +1,17 @@
#!/bin/bash
# Computes the paths to files causing changes to the ghci flags. You probably wont be running this yourself, but rather ghcide will via configuration in hie.yaml.
set -e
cd $(dirname "$0")/..
echo "cabal.project"
echo "semantic.cabal"
echo "semantic-analysis/semantic-analysis.cabal"
echo "semantic-ast/semantic-ast.cabal"
echo "semantic-core/semantic-core.cabal"
echo "semantic-java/semantic-java.cabal"
echo "semantic-json/semantic-json.cabal"
echo "semantic-python/semantic-python.cabal"
echo "semantic-tags/semantic-tags.cabal"