We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 905ae7c commit cf67896Copy full SHA for cf67896
linuxdeploy-plugin-conda.sh
@@ -112,7 +112,10 @@ esac
112
pushd "$CONDA_DOWNLOAD_DIR"
113
miniconda_url=https://repo.continuum.io/miniconda/"$miniconda_installer_filename"
114
# let's make sure the file exists before we then rudimentarily ensure mutual exclusive access to it with flock
115
- touch "$miniconda_installer_filename"
+ # we set the timestamp to epoch 0; this should likely trigger a redownload for the first time
116
+ touch "$miniconda_installer_filename" -d '@0'
117
+
118
+ # now, let's download the file
119
flock "$miniconda_installer_filename" wget -N -c "$miniconda_url"
120
popd
121
0 commit comments