We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7410c34 commit 5b3e36cCopy full SHA for 5b3e36c
tasks/cdn_publish.sh
@@ -29,7 +29,13 @@ for path in `ls $dist/plotly*`; do
29
done
30
31
# copy topojson files over to the sync folder
32
-cp $dist/topojson/* $sync
+# NOTE: Temporarily adding the suffix '_un' to avoid overwriting the old topojson
33
+# which some old plots might depend on
34
+for filepath in $dist/topojson/*.json; do
35
+ f=${filepath##*/}
36
+ f=${f%.*}
37
+ cp $filepath "$sync/${f%.*}_un.json"
38
+done
39
40
# list folder and files
41
echo $sync
0 commit comments