Skip to content

Commit

Permalink
correct save_reports.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamil Jarmusik committed Oct 19, 2021
1 parent 871e447 commit ad96fee
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions backstop/save_reports.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
cd backstop_data
mkdir $1
cp -R ./html_report ./$1
cp -R ./bitmaps_reference ./$1
cp -R ./bitmaps_test ./$1
cd backstop_data;
mkdir $1;
cp -arf html_report $1;
cp -arf bitmaps_reference $1;
cp -arf bitmaps_test $1;
rm -rf html_report;
rm -rf bitmaps_reference;
rm -rf bitmaps_test;
cd ..

0 comments on commit ad96fee

Please sign in to comment.