From 18d6041ef143ff9578d32412648ae5fd9e4c1633 Mon Sep 17 00:00:00 2001 From: gorhill Date: Sat, 2 Apr 2016 08:59:43 -0400 Subject: [PATCH] somehow removed cp command before last checkin --- tools/update-checksums.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/update-checksums.sh b/tools/update-checksums.sh index e1fe294aa..950bc93cc 100755 --- a/tools/update-checksums.sh +++ b/tools/update-checksums.sh @@ -18,6 +18,7 @@ filters=( ) for repoPath in "${filters[@]}"; do localPath=`printf $repoPath | sed 's/\.\.\/uAssets\/filters/assets\/ublock/'` + cp $repoPath $localPath echo `md5sum $localPath` >> assets/checksums.txt done @@ -31,6 +32,7 @@ thirdparties=( ) for repoPath in "${thirdparties[@]}"; do localPath=`printf $repoPath | sed 's/\.\.\/uAssets\/thirdparties/assets\/thirdparties/'` + cp $repoPath $localPath echo `md5sum $localPath` >> assets/checksums.txt done