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.
10 lines
233 B
10 lines
233 B
#!/bin/bash
|
|
|
|
if [ -z "$ANALYTICS_KEY" ]; then
|
|
echo 'ANALYTICS_KEY must be set'
|
|
exit 1
|
|
fi
|
|
|
|
cd "$(dirname "$0")/.." || exit
|
|
|
|
wget https://cdn.segment.com/analytics.js/v1/"$ANALYTICS_KEY"/analytics.min.js -O static/analytics.min.js
|
|
|