Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ in development

Added
~~~~~
* Move `git clone` to `user_home/.st2packs` #5845

* Error on `st2ctl status` when running in Kubernetes. #5851
Contributed by @mamercad
Expand Down
2 changes: 1 addition & 1 deletion st2common/st2common/util/pack_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def download_pack(
with lock_file:
try:
user_home = os.path.expanduser("~")
abs_local_path = os.path.join(user_home, temp_dir_name)
abs_local_path = os.path.join(user_home, ".st2packs", temp_dir_name)

if pack_url.startswith("file://"):
# Local pack
Expand Down