Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbeedy committed Mar 2, 2023
1 parent f8013f0 commit 5b1343d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions charmcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ bases:
- name: ubuntu
channel: "22.04"
run-on:
- name: ubuntu
channel: "20.04"
architectures: [amd64]
- name: ubuntu
channel: "22.04"
architectures: [amd64]
- name: centos
channel: "7"
architectures: [amd64]
2 changes: 2 additions & 0 deletions metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ tags:
- nvidia

series:
- jammy
- focal
- centos7

requires:
Expand Down
2 changes: 1 addition & 1 deletion src/nvidia_ops_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def __init__(self):
self._distribution = f"{self._id}{self._os}"
self._cuda_keyring_url = (
"https://developer.download.nvidia.com/compute/cuda/"
f"repos/{self._distribuition}/{self._arch}/cuda-keyring_1.0-1_all.deb"
f"repos/{self._distribution}/{self._arch}/cuda-keyring_1.0-1_all.deb"
)
self._cuda_sources_list = Path(
f"/etc/apt/sources.list.d/cuda-{self._distribution}-{self._arch}.list"
Expand Down

0 comments on commit 5b1343d

Please sign in to comment.