File tree 3 files changed +11
-1
lines changed
3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ RUN dnf reinstall -y \
48
48
gawk \
49
49
grep \
50
50
sed \
51
- time \
52
51
&& \
53
52
dnf clean all
54
53
@@ -66,6 +65,7 @@ RUN dnf install -y \
66
65
less \
67
66
make \
68
67
man-db \
68
+ time \
69
69
&& \
70
70
dnf clean all
71
71
Original file line number Diff line number Diff line change @@ -27,3 +27,12 @@ $(uname -a)
27
27
Type 'man Lazuli' to read the documentation.
28
28
29
29
EOF
30
+
31
+ if [ " $( cat /~/workspace/VERSION) " != " $( cat /etc/lazuli-version) " ]; then
32
+ printf " WARNING! You are using the container in version %s whereas your \
33
+ sources are in version %s\n" $( cat /etc/lazuli-version) \
34
+ $( cat /~/workspace/VERSION) ;
35
+
36
+ printf " It is recommended that you pull and run the container in version \
37
+ %s\n\n" $( cat /~/workspace/VERSION) ;
38
+ fi
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ grep -nrH \
23
23
--include=* .S \
24
24
--include=* .sh \
25
25
--include=* .txt \
26
+ --include=Dockerfile \
26
27
--exclude-dir=build \
27
28
--exclude-dir=LICENSES \
28
29
--exclude-dir=_build > $tmp
You can’t perform that action at this time.
0 commit comments