Skip to content

Commit

Permalink
sh-elf-vhex - v2.0.0-rc1 : hotfix curl operation + fix typo error
Browse files Browse the repository at this point in the history
*fix*
> [project]
  | [readme] fix curl operation information
> [scripts]
  | [all] fix missing help message
  | [bootstrap] remove invalid use of `utils_callcmd()`
  • Loading branch information
YannMagnin committed Dec 17, 2023
1 parent da8dfe3 commit 3a4bb90
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,9 @@ and [vxLibc](https://github.com/YannMagnin/vxLibc)

The build is relatively simple and can be done in two different ways:

Using `curl` and `jq`:
```bash
curl -s "https://github.com/YannMagnin/sh-elf-vhex/+/HEAD/scripts/bootstrap.sh?format=TEXT" | base64 --decode | bash
curl 'https://api.github.com/repos/YannMagnin/sh-elf-vhex/contents/scripts/bootstrap.sh' | jq -r '.content' | base64 --decode | bash
```

Or by cloning the project and using the `bootstrap.sh` script, see
Expand Down
2 changes: 1 addition & 1 deletion scripts/_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

function help() {
cat << EOF
Script for the installation step of binutils/GCC tools for the Vhex kernel.
Script for the installation step of binutils/GCC tools for the Vhex project.
Usage $0 [options...]
Expand Down
2 changes: 1 addition & 1 deletion scripts/binutils/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

function help() {
cat << EOF
Script for the building step of binutils for the Vhex kernel.
Script for the building step of binutils for the Vhex project.
Usage $0 [options...]
Expand Down
3 changes: 1 addition & 2 deletions scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ then
fi
[[ -d "$prefix_clone" ]] && rm -rf "$prefix_clone"
echo '<sh-elf-vhex> self-clone repository...'
utils_callcmd \
git \
git \
clone \
--depth=1 \
https://github.com/YannMagnin/sh-elf-vhex.git \
Expand Down
2 changes: 1 addition & 1 deletion scripts/gcc/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

function help() {
cat << EOF
Script for the building step of GCC for the Vhex kernel.
Script for the building step of GCC for the Vhex project
Usage $0 [options...]
Expand Down
2 changes: 1 addition & 1 deletion scripts/gcc/configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

function help() {
cat << EOF
Script for the configuration step of Vhex kernel's binutils.
Script for the configuration step of Vhex's binutils.
Usage $0 [options...]
Expand Down

0 comments on commit 3a4bb90

Please sign in to comment.