We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bfe594 commit af6017fCopy full SHA for af6017f
Doit
@@ -0,0 +1,20 @@
1
+#!/bin/sh
2
+
3
+test -n "$branches" || branches='next master maint jch pu'
4
5
+changed=
6
+for b in $branches
7
+do
8
+ installed=$(rungit "$b" version) &&
9
+ installed=${installed##* } &&
10
+ case "$installed" in
11
+ *-g*) installed=$(git describe "$installed") ;;
12
+ *) installed=$(git describe "v$installed") ;;
13
+ esac &&
14
+ latest=$(git describe "$b") &&
15
+ test "z$latest" = "z$installed" ||
16
+ changed="$changed $b"
17
+done
18
19
+Meta/Dothem -j32 &&
20
+Meta/Dothem -j32 --dash --branches="$changed" --scratch --force CC=clang
0 commit comments