Skip to content

Commit 4f7cd63

Browse files
chore(hermes): bump hermes from 11.1.1 to 11.1.2
and update default setting for overwriting ~/.bashrc (not false, i.e. we append instead of overwrite) Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
1 parent 2b267f0 commit 4f7cd63

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
- name: Acquire hermes
3232
run: |
3333
cd src/hermes
34-
wget --quiet https://github.com/georglauterbach/hermes/releases/download/v11.1.1/hermes-v11.1.1-aarch64-unknown-linux-musl
35-
wget --quiet https://github.com/georglauterbach/hermes/releases/download/v11.1.1/hermes-v11.1.1-x86_64-unknown-linux-musl
34+
wget --quiet https://github.com/georglauterbach/hermes/releases/download/v11.1.2/hermes-v11.1.2-aarch64-unknown-linux-musl
35+
wget --quiet https://github.com/georglauterbach/hermes/releases/download/v11.1.2/hermes-v11.1.2-x86_64-unknown-linux-musl
3636
3737
- name: Publish Features
3838
uses: devcontainers/action@v1

src/hermes/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ https://github.com/georglauterbach/hermes in a Development Container
1616
| Options Id | Description | Type | Default Value |
1717
|-----|-----|-----|-----|
1818
| init.bashrc | Whether to add _hermes_ to the default Bash setup in `$[HOME}/.bashrc` | boolean | true |
19-
| init.bashrc-overwrite | When `hermes.init.bashrc` is `true`, whether to completely overwrite the file `${HOME}/.bashrc` to only run _hermes_ | boolean | true |
19+
| init.bashrc-overwrite | When `init.bashrc` is `true`, whether to completely overwrite the file `${HOME}/.bashrc` instead of appending | boolean | false |
2020

2121

2222

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// ref: https://github.com/devcontainers/spec/blob/main/schemas/devContainerFeature.schema.json
22
{
33
"id": "hermes",
4-
"version": "11.1.1",
4+
"version": "11.1.2",
55
"name": "hermes",
66
"documentationURL": "https://github.com/georglauterbach/dev-container-features/tree/main/src/hermes",
77
"description": "https://github.com/georglauterbach/hermes in a Development Container",
@@ -12,9 +12,9 @@
1212
"default": true
1313
},
1414
"init.bashrc-overwrite": {
15-
"description": "When `hermes.init.bashrc` is `true`, whether to completely overwrite the file `${HOME}/.bashrc` to only run _hermes_",
15+
"description": "When `init.bashrc` is `true`, whether to completely overwrite the file `${HOME}/.bashrc` instead of appending",
1616
"type": "boolean",
17-
"default": true
17+
"default": false
1818
}
1919
}
2020
}

src/hermes/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ main() {
4646
initialize_bashrc
4747

4848
mkdir --parents /usr/local/bin/
49-
mv "hermes-v11.1.1-$(uname --machine)-unknown-linux-musl" /usr/local/bin/hermes
49+
mv "hermes-v11.1.2-$(uname --machine)-unknown-linux-musl" /usr/local/bin/hermes
5050
}
5151

5252
main "${@}"

0 commit comments

Comments
 (0)