1
1
mirror of https://github.com/github/semantic.git synced 2024-12-29 01:42:43 +03:00
semantic/script/ghci-flags-dependencies

22 lines
723 B
Plaintext
Raw Normal View History

#!/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
2019-12-18 17:00:13 +03:00
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"
2019-12-19 00:52:22 +03:00
echo "semantic-tags/semantic-tags.cabal"
echo "semantic-go/semantic-go.cabal"
echo "semantic-java/semantic-java.cabal"
echo "semantic-json/semantic-json.cabal"
echo "semantic-python/semantic-python.cabal"
echo "semantic-ruby/semantic-ruby.cabal"
2019-12-20 02:34:39 +03:00
echo "semantic-tsx/semantic-tsx.cabal"
2019-12-20 01:32:45 +03:00
echo "semantic-typescript/semantic-typescript.cabal"