daml/dev-env/bin/dade-help
Gary Verhaegen dfa648f585
hunt down DAML better (#13195)
Process:

- `git ls-files -z | xargs -0 -n 100 sed -i --follow-symlinks 's/DAML/Daml/g'`
- `git add -p`
- `git restore -p`
- Check there is no unstaged change left.

To review:

- Check for false positives by carefully reviewing the diff in this PR.
- Check for false negatives with `git grep DAML`.
- Quicker check for fals positives:

```
git grep DAML | grep -v migration | grep -v DAML_
```

Fixes #13190

Note: This is the "second half" of #13191, which failed to cover all the
remaining DAMLs because of:

```
$ git ls-files | grep "'"
compiler/damlc/tests/daml-test-files/MangledScenario'.daml
```

CHANGELOG_BEGIN
CHANGELOG_END
2022-03-08 17:04:58 +01:00

30 lines
1.2 KiB
Bash
Executable File

#!/usr/bin/env bash
cat <<EOF
Usage: $0 <command>
The following commands are supported:
dade help: This help page.
dade init: Initialize the DA development environment.
dade info: Prints out information about DA development environment.
dade list: Print names of all tools in DA development environment.
dade preload: Preload the development environment by building
all tools.
dade prepare-for-update: Downloads all dev-env tools from 'dev-env-next' branch.
dade closure-size: Compute the size of the development environment
tools' closures.
dade collect-garbage: Garbage collect the development environment.
dade freeze Snapshots current dev-env definitions and builds a
Nix pacakge out of it.
dade copyright-headers: Update copyright headers on our source files.
da-ghci: Run GHCi with import paths to our packages.
da-watch-tests: Watch source files for changes and run tests.
da-test-daml-foundations: Run the test suite for Daml Foundations
EOF