source: main/trunk/model-sites-dev/eurovision-lod/collect/eurovision/prepare/04-COPY-VOTING-METADATA-TO-IMPORT.sh@ 34911

Last change on this file since 34911 was 34911, checked in by davidb, 3 years ago

Changes after new 'from country' doc added in

  • Property svn:executable set to *
File size: 450 bytes
Line 
1#!/bin/bash
2
3
4echo ""
5echo "Copying:"
6
7for d in ../import/sparqlresults-* ; do
8 if [ -d "$d" ] ; then
9 echo " voting-excel/metadata.json -> $d/."
10 /bin/cp "voting-excel/metadata.json" "$d/."
11 fi
12done
13
14
15echo ""
16echo "Copying:"
17
18echo " voting-excel/metadata-votes/* ../import/fromcountry-metadata-votes/."
19/bin/rm -rf "../import/fromcountry-metadata-votes"
20/bin/cp -r voting-excel/metadata-votes ../import/fromcountry-metadata-votes
21
22echo ""
23
24
Note: See TracBrowser for help on using the repository browser.