Skip to content

Commit 3fe0e0f

Browse files
release: 10.0.0 (#11)
Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com>
1 parent 2c45504 commit 3fe0e0f

File tree

11 files changed

+278
-241
lines changed

11 files changed

+278
-241
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"dockerfile": "Dockerfile"
55
},
66
"features": {
7-
"ghcr.io/georglauterbach/dev-container-features/vscode-cache-extensions:0.1": {},
7+
"ghcr.io/georglauterbach/dev-container-features/vscode-cache-extensions:0.2": {},
88
"ghcr.io/georglauterbach/dev-container-features/hermes:11.2": {},
99
"ghcr.io/georglauterbach/dev-container-features/lang-sh:0.2": {}
1010
},

CONTRIBUTING.md

Lines changed: 5 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
To clone this repository with all submodules, run
66

77
``` CONSOLE
8-
$ git clone --recurse-submodules -j $(nproc) git@github.com:georglauterbach/libbash.git
8+
$ git clone --recurse-submodules -j 2 git@github.com:georglauterbach/libbash.git
99
Cloning into 'libbash'...
1010
remote: Enumerating objects: 76, done.
1111
remote: Counting objects: 100% (76/76), done.
@@ -27,24 +27,13 @@ Take care of the following constraints.
2727
### Robustness
2828

2929
Bash is a fragile language. Take special care of side effects or unwanted
30-
failures when writing code. Writing robust Bash is a very complicated thing
31-
to do, be assured. Writing idiomatic code is even harder.
30+
failures when writing code. Writing robust Bash is a rather complicated..
31+
Writing idiomatic Bash is even harder..
3232

3333
### Style
3434

35-
The code in this repository is (heavily) opinionated when it comes to formatting.
36-
Please adjust to the already present style. Library scripts will always start
37-
the same way:
38-
39-
``` BASH
40-
#! /bin/bash
41-
42-
# version <SEMVER VERSION>
43-
# executed by <CALLER / EXECUTOR>
44-
# task <TASK>
45-
46-
SCRIPT='<SCRIPT NAME>' # optional
47-
```
35+
The code in this repository is opinionated. Please adjust to the already
36+
present style.
4837

4938
## CI/CD
5039

Justfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ export ROOT_DIRECTORY := justfile_directory()
2222

2323
# run a specific test
2424
@test name:
25-
bash "{{ROOT_DIRECTORY}}/tests/bats_core/bin/bats" --timing {{ROOT_DIRECTORY}}/tests/*-{{name}}.bats
25+
bash "{{ROOT_DIRECTORY}}/tests/bats_core/bin/bats" \
26+
--timing {{ROOT_DIRECTORY}}/tests/*-{{name}}.bats

LICENSE

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
1+
MIT License
2+
13
Copyright (C) 2022 Georg Lauterbach
24

3-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
411

5-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
614

7-
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

cspell.config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,5 @@ ignoreWords:
2020
# multiple words written as one
2121
- cooldown
2222
- devcontainers
23+
- Justfile
2324
- libbash

0 commit comments

Comments
 (0)