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 591c7f3 commit 7cc69f9Copy full SHA for 7cc69f9
src/makefile
@@ -1,9 +1,19 @@
1
build-dir=../build
2
theme=green-icon
3
4
-all: ${theme}
+all: patch-analytics ${theme}
5
6
green-icon:
7
mkdir ${build-dir};rsync -avC --progress lab/* themes/${theme}/* ${build-dir}
8
clean:
9
rm -rf ${build-dir}
10
+
11
+patch-analytics:
12
+ git clone https://github.com/virtual-labs/vlabs-analytics.git
13
+ cp vlabs-analytics/gtm-patcher.py ../scripts/.
14
+ cp vlabs-analytics/patch-analytics.sh ../scripts/.
15
+ chmod +x ../scripts/patch-analytics.sh
16
+ ../scripts/patch-analytics.sh
17
+ rm -rf vlabs-analytics
18
+ rm -rf ../scripts/patch-analytics.sh
19
+ rm -rf ../scripts/gtm-patcher.py
0 commit comments