Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,15 @@ The primary tool for this repository is `flutter_plugin_tools.dart`.

### Initial Setup

First, initialize the tooling:
First, define an environment variable for the repository root directory and initialize the tooling:
```bash
cd $REPO_ROOT/script/tool # $REPO_ROOT is the repository root
dart pub get
# Define an environment variable for the repository root.
export REPO_ROOT=$(pwd)

# Verify that the environment variable is working correctly.
echo "Repository root directory: $REPO_ROOT"

dart pub get -C $REPO_ROOT/script/tool
```

### Identifying Target Packages
Expand Down
2 changes: 1 addition & 1 deletion script/tool/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ local development.
Set up:

```sh
cd script/tool && dart pub get && cd ../../
dart pub get -C script/tool
```

Run:
Expand Down