Skip to content

Commit 4e1d5cf

Browse files
committed
Change company name to RKVST
Company name is now RKVST. Signed-off-by: Paul Hewlett <[email protected]>
1 parent b495155 commit 4e1d5cf

File tree

4 files changed

+20
-13
lines changed

4 files changed

+20
-13
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Contributing to archivist-shell #
1+
# Contributing to rkvst-shell #
22

3-
Thanks for taking the time to contribute to archivist-shell!
3+
Thanks for taking the time to contribute to rkvst-shell!
44

55
Contributing is not limited to writing code and submitting a PR. Feel free to submit an
6-
[issue](https://github.com/jitsuin-inc/archivist-shell/issues/new/choose) or comment on an existing one
6+
[issue](https://github.com/rkvst/rkvst-shell/issues/new/choose) or comment on an existing one
77
to report a bug, provide feedback, or suggest a new feature.
88

99
Of course, contributing code is more than welcome! To keep things simple, if you're fixing a small issue,

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# archivist-shell
1+
# rkvst-shell
22

33
Repository for convenience scripts for the RKVST system.
44

@@ -47,21 +47,21 @@ Host *
4747
```
4848
> i.e. 'githubUserHandle' viz:
4949
>
50-
> git clone ssh-githubUserHandle:githubUserHandle/archivist-shell.git
50+
> git clone ssh-githubUserHandle:githubUserHandle/rkvst-shell.git
5151
>
5252
5353

5454
```bash
5555
mkdir githubUserHandle
5656
cd githubUserHandle
57-
git clone ssh-githubUserHandle:githubUserHandle/archivist-shell.git
57+
git clone ssh-githubUserHandle:githubUserHandle/rkvst-shell.git
5858
```
5959

6060
Enter the new cloned fork and add the original upstream repo as a remote:
6161

6262
```bash
63-
cd archivist-shell
64-
git remote add upstream ssh-githubUserHandle:jitsuin-inc/archivist-shell.git
63+
cd rkvst-shell
64+
git remote add upstream ssh-githubUserHandle:rkvst/rkvst-shell.git
6565
git remote -v
6666
```
6767

@@ -138,7 +138,7 @@ Push the changes upstream(the set-upstream option is only required the first tim
138138
git push --set-upstream origin dev/githubUserHandle/some-proposed-fix
139139
```
140140

141-
Enter the github ui at https://github.com/jitsuin-inc/archivist-shell and
141+
Enter the github ui at https://github.com/rkvst/rkvst-shell and
142142
generate a pull request.
143143

144144
Reviewers will be notified when a PR is generated and you will receive feedback.

Taskfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ tasks:
55
build-scraper:
66
desc: Build scraper image
77
cmds:
8-
- docker build --no-cache -f Dockerfile-scraper -t archivist-shell-scraper .
8+
- docker build --no-cache -f Dockerfile-scraper -t rkvst-shell-scraper .
99

1010
check:
1111
desc: Standard linting of shell scripts
@@ -27,6 +27,6 @@ tasks:
2727
-w $(pwd) \
2828
-u $(id -u):$(id -g) \
2929
-e USER \
30-
archivist-shell-scraper \
30+
rkvst-shell-scraper \
3131
{{.CLI_ARGS}}
3232

scripts/sbom_scraper.sh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ log() {
6868
# ----------------------------------------------------------------------------
6969
# Option parsing
7070
# ----------------------------------------------------------------------------
71-
TOOL_NAME="https://github.com/jitsuin-inc/archivist-shell sbom_scraper.sh"
71+
TOOL_NAME="https://github.com/rkvst/rkvst-shell sbom_scraper.sh"
7272
#
7373
# Set this value and merge the change just before release
7474
TOOL_VERSION="v0.6.2"
@@ -177,9 +177,13 @@ TEMPDIR=$( mktemp -d /tmp/.sbom_scraper.XXXXXXXX )
177177

178178
# report on exit
179179
function finalise {
180+
# See exit 0 code at bottom of file.
181+
# shellcheck disable=SC2317
180182
CODE=$?
183+
# shellcheck disable=SC2317
181184
rm -rf "$TEMPDIR"
182-
exit $CODE
185+
# shellcheck disable=SC2317
186+
exit "$CODE"
183187
}
184188
trap finalise EXIT INT TERM
185189

@@ -606,4 +610,7 @@ EOF
606610
fi
607611
log "Upload success"
608612
fi
613+
# this triggers a false shellcheck warning SC2317
614+
# See https://github.com/koalaman/shellcheck/issues/2542
615+
# Disabled in the finalise function above.
609616
exit 0

0 commit comments

Comments
 (0)