Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/copilot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,19 +111,19 @@ src/_installScripts/Category/ScriptName/
└── ScriptName-hooks/ # Optional: lifecycle hooks
```

2. **Implement required functions** in `ScriptName.sh`
1. **Implement required functions** in `ScriptName.sh`

3. **Configure binary.yaml** (see [Binary yaml Files](#binary-yaml-files))
2. **Configure binary.yaml** (see [Binary yaml Files](#binary-yaml-files))

4. **Add to profile** in `profiles/profile.*.sh`:
3. **Add to profile** in `profiles/profile.*.sh`:

```bash
CONFIG_LIST+=(
"installScripts/ScriptName"
)
```

5. **Compile**: Run `pre-commit run bash-compiler -a`
1. **Compile**: Run `pre-commit run bash-compiler -a`

### Install Script Patterns

Expand Down Expand Up @@ -448,14 +448,14 @@ bad: some-command --long-option value --another-option value --another-option
./test.sh scrasnups/build:bash-tools-ubuntu-5.3 path/to/failing.bats
```

3. **Enable debug**:
1. **Enable debug**:

```bash
KEEP_TEMP_FILES=1 ./test.sh ... # Keep temp files
```

4. **Fix issues** and re-run
5. **Commit** fixes
1. **Fix issues** and re-run
2. **Commit** fixes

## Troubleshooting

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: '26'
cache: 'yarn'
node-version: "26"
cache: "yarn"

# install npm dependencies for pre-commit hooks
- name: Install npm dependencies for pre-commit hooks
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
},
"github.copilot.chat.localeOverride": "en",
"github.copilot.chat.commitMessageGeneration.instructions": [
{"file": ".github/instructions/commit-message.instructions.md"}
{ "file": ".github/instructions/commit-message.instructions.md" }
],
"github.copilot.enable": {
"*": true,
Expand Down