-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
executable file
·45 lines (32 loc) · 911 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
##################################################
### INITIALIZATION
##################################################
# create a virtual env if not existing
if [ ! -d venv ]
then
virtualenv --python=python3 venv
source venv/bin/activate
pip install -r requirements.txt
else
source venv/bin/activate
fi
##################################################
### ZANATA
##################################################
# reset the results folder
rm -rf ./results
mkdir ./results
# launch the Zanata script
./read_zanata_stats.py
# save data in git
git add history/zanata
git commit -m "add zanata $(date +%F)"
##################################################
### APPDATA FILES
##################################################
for i in {20..30}; do
./read_appdata_fedora_stats.py --version "$i"
done
git add history/appdata
git commit -m "add appdata $(date +%F)"