Skip to content
Snippets Groups Projects
Commit 9f666cee authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

explicit is better than implicit

parent 69e9368c
No related branches found
No related tags found
No related merge requests found
......@@ -145,7 +145,12 @@ bpwatch stop clear_old_venvs
# Restore old artifacts from the cache.
bpwatch start restore_cache
cp -R $CACHE_DIR/$CACHED_DIR . &> /dev/null || true
mkdir -p $CACHED_DIR
cp -R $CACHE_DIR/$CACHED_DIR/python $CACHE_DIR/python &> /dev/null || true
cp -R $CACHE_DIR/$CACHED_DIR/python-stack $CACHE_DIR/python-stack &> /dev/null || true
cp -R $CACHE_DIR/$CACHED_DIR/python-version $CACHE_DIR/python-version &> /dev/null || true
cp -R $CACHE_DIR/$CACHED_DIR/vendor $CACHE_DIR/vendor &> /dev/null || true
cp -R $CACHE_DIR/$CACHED_DIR/venv $CACHE_DIR/venv &> /dev/null || true
bpwatch stop restore_cache
set +e
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment