Re: Customizable project .cpcache path

2019-02-25 Thread Alex Miller
File a ticket... https://dev.clojure.org/jira/browse/TDEPS

Please start with the problem - not being able to use in a directory which 
is not writable, which may have many solutions.

On Monday, February 25, 2019 at 10:51:24 AM UTC-6, Stanislav Yurin wrote:
>
> Currently user cache is customizable via CLJ_CACHE or CLJ_CONFIG (and 
> XDG_..) environment variables,
> but inside project dir the path is set by the following code in clojure 
> tools bash script:
>
> # Determine whether to use user or project cache
> if [[ -f deps.edn ]]; then
>   cache_dir=.cpcache
> else
>   cache_dir="$user_cache_dir"
> fi
>
> Which is not always desirable in deployments when project dir is not 
> writeable (e.g. application code is not in home directory)
> Is it reasonable to add something like CLJ_PROJECT_CACHE or there is a 
> reason to keep it static?
>
> Thanks!
>
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Customizable project .cpcache path

2019-02-25 Thread 'Stanislav Yurin' via Clojure
Currently user cache is customizable via CLJ_CACHE or CLJ_CONFIG (and 
XDG_..) environment variables,
but inside project dir the path is set by the following code in clojure 
tools bash script:

# Determine whether to use user or project cache
if [[ -f deps.edn ]]; then
  cache_dir=.cpcache
else
  cache_dir="$user_cache_dir"
fi

Which is not always desirable in deployments when project dir is not 
writeable (e.g. application code is not in home directory)
Is it reasonable to add something like CLJ_PROJECT_CACHE or there is a 
reason to keep it static?

Thanks!

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.