You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using ark to deploy Android SDK packages on Chef nodes.
When we define these two resources, ark keeps storing the files in cache folder under the same name 'm2repository.zip' that causes it to re-download the files every time:
ark 'android/m2repository' do
action :put
name 'm2repository'
path '/opt/android/extras/android'
url 'https://dl.google.com/android/repository/android_m2repository_r33.zip'
version 'android'
end
ark 'google/m2repository' do
action :put
name 'm2repository'
path '/opt/android/extras/google'
url 'https://dl.google.com/android/repository/google_m2repository_r29.zip'
version 'google'
end
Is there any way to override this behavior nicely?
The text was updated successfully, but these errors were encountered:
We are using
ark
to deploy Android SDK packages on Chef nodes.When we define these two resources,
ark
keeps storing the files in cache folder under the same name 'm2repository.zip' that causes it to re-download the files every time:Is there any way to override this behavior nicely?
The text was updated successfully, but these errors were encountered: