Skip to content

Commit 1004739

Browse files
committed
drop the static
1 parent 585f2fa commit 1004739

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<div align="center">
22

3-
# asdf-clang-tools-static [![Build](https://github.com/amrox/asdf-clang-tools-static/actions/workflows/build.yml/badge.svg)](https://github.com/amrox/asdf-clang-tools-static/actions/workflows/build.yml) [![Lint](https://github.com/amrox/asdf-clang-tools-static/actions/workflows/lint.yml/badge.svg)](https://github.com/amrox/asdf-clang-tools-static/actions/workflows/lint.yml)
3+
# asdf-clang-tools [![Build](https://github.com/amrox/asdf-clang-tools/actions/workflows/build.yml/badge.svg)](https://github.com/amrox/asdf-clang-tools/actions/workflows/build.yml) [![Lint](https://github.com/amrox/asdf-clang-tools/actions/workflows/lint.yml/badge.svg)](https://github.com/amrox/asdf-clang-tools/actions/workflows/lint.yml)
44

55

6-
[clang-tools-static](https://github.com/amrox/clang-tools-static) plugin for the [asdf version manager](https://asdf-vm.com).
6+
[clang-tools](https://github.com/amrox/clang-tools) plugin for the [asdf version manager](https://asdf-vm.com).
77

88
</div>
99

@@ -25,24 +25,24 @@
2525
Plugin:
2626

2727
```shell
28-
asdf plugin add clang-tools-static
28+
asdf plugin add clang-tools
2929
# or
30-
asdf plugin add clang-tools-static https://github.com/amrox/asdf-clang-tools-static.git
30+
asdf plugin add clang-tools https://github.com/amrox/asdf-clang-tools.git
3131
```
3232

33-
clang-tools-static:
33+
clang-tools:
3434

3535
```shell
3636
# Show all installable versions
37-
asdf list-all clang-tools-static
37+
asdf list-all clang-tools
3838

3939
# Install specific version
40-
asdf install clang-tools-static latest
40+
asdf install clang-tools latest
4141

4242
# Set a version globally (on your ~/.tool-versions file)
43-
asdf global clang-tools-static latest
43+
asdf global clang-tools latest
4444

45-
# Now clang-tools-static commands are available
45+
# Now clang-tools commands are available
4646
clang-format
4747
```
4848

@@ -53,7 +53,7 @@ install & manage versions.
5353

5454
Contributions of any kind welcome! See the [contributing guide](contributing.md).
5555

56-
[Thanks goes to these contributors](https://github.com/amrox/asdf-clang-tools-static/graphs/contributors)!
56+
[Thanks goes to these contributors](https://github.com/amrox/asdf-clang-tools/graphs/contributors)!
5757

5858
# License
5959

contributing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Testing Locally:
66
asdf plugin test <plugin-name> <plugin-url> [--asdf-tool-version <version>] [--asdf-plugin-gitref <git-ref>] [test-command*]
77

88
#
9-
asdf plugin test clang-tools-static https://github.com/amrox/asdf-clang-tools-static.git "clang-format"
9+
asdf plugin test clang-tools https://github.com/amrox/asdf-clang-tools.git "clang-format"
1010
```
1111

1212
Tests are automatically run in GitHub Actions on push and PR.

lib/utils.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ASDF_CLANG_TOOLS_MACOS_DEQUARANTINE=${ASDF_CLANG_TOOLS_MACOS_DEQUARANTINE:-0}
77

88
GH_REPO="muttleyxd/clang-tools-static-binaries"
99
GH_REPO_URL="https://github.com/${GH_REPO}"
10-
PLUGIN_NAME="clang-tools-static"
10+
PLUGIN_NAME="clang-tools"
1111
USE_KERNEL=
1212
USE_ARCH=
1313
USE_PLATFORM=
@@ -35,7 +35,7 @@ log() {
3535

3636
curl_opts=(-fsSL)
3737

38-
# NOTE: You might want to remove this if clang-tools-static is not hosted on GitHub releases.
38+
# NOTE: You might want to remove this if clang-tools is not hosted on GitHub releases.
3939
if [ -n "${GITHUB_API_TOKEN:-}" ]; then
4040
curl_opts=("${curl_opts[@]}" -H "Authorization: token $GITHUB_API_TOKEN")
4141
fi

0 commit comments

Comments
 (0)