Skip to content

Commit 7fdd6e4

Browse files
committed
Disk cache bugfixes.
1 parent 8da97c3 commit 7fdd6e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Test/mixed-1.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ mv -v wordpress wp
2020
echo "Number of files in the wp/ path:"
2121
find wp | wc -l
2222
echo "Zipping wp/ in wp.zip ..."
23-
zip -r wp.zip wp
23+
zip -rv wp.zip wp
2424
echo "Removing wp/ path ..."
2525
rm -rfv wp
2626
echo "Checking zip file ..."
27-
unzip -t wp.zip
27+
unzip -tv wp.zip
2828
echo "Listing zip file ..."
29-
unzip -l wp.zip
30-
echo "Remiving zip file ..."
31-
rm wp.zip
29+
unzip -lv wp.zip
30+
echo "Removing zip file ..."
31+
rm -v wp.zip

0 commit comments

Comments
 (0)