-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-change-default-branch-nextcloud-requirements.sh
executable file
·89 lines (79 loc) · 1.82 KB
/
run-change-default-branch-nextcloud-requirements.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#!/bin/bash
#
# Steps:
# 1. Change `<nextcloud min-version="25" max-version="25" />`
# 2. In Branched/ and Stable/ bump the MAJOR version of the app: `<version>X.0.0</version>`
# 3. Add stableY to the list of branches on CI jobs
STILL_SKIP="0"
NEW_VERSION=$1
SKIP_UNTIL=$2
if ! [[ "$NEW_VERSION" ]]; then
echo "Missing nextcloud version"
exit
fi
if [[ "$SKIP_UNTIL" ]]; then
STILL_SKIP="1"
fi
cd Branched/
for dir in ./*/
do
dir=${dir%*/}
if [[ "$SKIP_UNTIL" = "${dir##*/}" ]]; then
STILL_SKIP="0"
fi
if [[ "$STILL_SKIP" = "0" ]]; then
echo "#"
echo "#"
echo -e "# \033[1;35m${dir##*/}\033[0m"
echo "#"
echo "#"
cd ${dir##*/}
../../change-default-branch-nextcloud-requirements.sh $NEW_VERSION
cd ..
else
echo -e "\033[1;35m🏳 Skipping ${dir##*/}\033[0m"
fi
done
cd ../
cd Stable/
for dir in ./*/
do
dir=${dir%*/}
if [[ "$SKIP_UNTIL" = "${dir##*/}" ]]; then
STILL_SKIP="0"
fi
if [[ "$STILL_SKIP" = "0" ]]; then
echo "#"
echo "#"
echo -e "# \033[1;35m${dir##*/}\033[0m"
echo "#"
echo "#"
cd ${dir##*/}
../../change-default-branch-nextcloud-requirements.sh $NEW_VERSION
cd ..
else
echo -e "\033[1;35m🏳 Skipping ${dir##*/}\033[0m"
fi
done
cd ../
cd Multibranch/
for dir in ./*/
do
dir=${dir%*/}
if [[ "$SKIP_UNTIL" = "${dir##*/}" ]]; then
STILL_SKIP="0"
fi
if [[ "$STILL_SKIP" = "0" ]]; then
echo "#"
echo "#"
echo -e "# \033[1;35m${dir##*/}\033[0m"
echo "#"
echo "#"
cd ${dir##*/}
../../change-default-branch-nextcloud-requirements-multi.sh $NEW_VERSION
cd ..
else
echo -e "\033[1;35m🏳 Skipping ${dir##*/}\033[0m"
fi
done
cd ../