diff options
author | davidovski <david@davidovski.xyz> | 2022-01-18 13:58:52 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-18 13:58:52 +0000 |
commit | faf46debf64a6721084d753f3475c2f9e7d2100f (patch) | |
tree | 166a4f1ed0a0ff9832c635816762f9ad2762c18c | |
parent | 9d77f69527ba7ae30f5183b14106d92fc45220c3 (diff) |
fixed typo in word root
-rw-r--r-- | src/verbs/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/verbs/install.py b/src/verbs/install.py index 0d8ec3b..3b2c2c4 100644 --- a/src/verbs/install.py +++ b/src/verbs/install.py @@ -273,7 +273,7 @@ def install_package(package_name, package_path, package_info, # TODO loading bar here files = util.extract_tar(package_path, root) if post_install: - run_post_install(config, verbose=verbose, rost=root) + run_post_install(config, verbose=verbose, root=root) save_installed_info(package_name, package_info, files, repo, source_url, key, config, root=root) return files |