diff options
author | merakor <cem@ckyln.com> | 2020-08-03 15:52:29 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-08-03 15:52:29 +0000 |
commit | c060d828bfde3cc13dd79efcbb55aadfdcce4ecc (patch) | |
tree | 5c8ee2ff63ba6b107d5529d8ee70007ad2476ff1 /src/cpt-install | |
parent | c6d00eaff2188ce651945a79fae7d4aafcf050ec (diff) | |
download | cpt-c060d828bfde3cc13dd79efcbb55aadfdcce4ecc.tar.gz |
cpt: create caches manually for each script that needs it
This makes sure we don't create unnecessary cache directories. We can source the
library without creating directories now.
FossilOrigin-Name: 8d9a38a33265e7a597375bb2ef4aa2263e110fb06c9b5df948d46a64c9b23e95
Diffstat (limited to 'src/cpt-install')
-rwxr-xr-x | src/cpt-install | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cpt-install b/src/cpt-install index e886ad4..d971974 100755 --- a/src/cpt-install +++ b/src/cpt-install @@ -31,6 +31,8 @@ done pkg_order "$@" +create_cache + # shellcheck disable=2154 for pkg in $order; do pkg_install "$pkg"; done |