You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
216 B
11 lines
216 B
7 years ago
|
#!/bin/bash
|
||
|
|
||
|
if [ -z $ANALYTICS_KEY ]; then
|
||
|
echo 'ANALYTICS_KEY must be set'
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
cd `dirname $0`/..
|
||
|
|
||
|
wget https://cdn.segment.com/analytics.js/v1/$ANALYTICS_KEY/analytics.min.js -O static/analytics.min.js
|