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

that explains a lot

parent 889b777e
No related branches found
No related tags found
No related merge requests found
...@@ -127,9 +127,9 @@ fi ...@@ -127,9 +127,9 @@ fi
# Restore old artifacts from the cache. # Restore old artifacts from the cache.
for dir in $CACHED_DIRS; do for dir in $CACHED_DIRS; do
echo "copying $dir..." echo "copying $dir..."
echo "$ ls $CACHED_DIR/$dir" echo "$ ls $CACHE_DIR/$dir"
ls $CACHED_DIR/$dir ls $CACHE_DIR/$dir
cp -R $CACHED_DIR/$dir . &> /dev/null || true cp -R $CACHE_DIR/$dir . &> /dev/null || true
ls $dir ls $dir
done done
...@@ -201,8 +201,8 @@ set -e ...@@ -201,8 +201,8 @@ set -e
# Store new artifacts in cache. # Store new artifacts in cache.
for dir in $CACHED_DIRS; do for dir in $CACHED_DIRS; do
echo "copying $dir..." echo "copying $dir..."
echo "$ ls $CACHED_DIR/$dir" echo "$ ls $CACHE_DIR/$dir"
ls $CACHED_DIR/$dir ls $CACHE_DIR/$dir
rm -rf $CACHE_DIR/$dir rm -rf $CACHE_DIR/$dir
ls $dir ls $dir
......
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