File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -181,6 +181,9 @@ echo >> "$MANIFEST"
181
181
echo " ## What's Changed" >> " $MANIFEST "
182
182
echo >> " $MANIFEST "
183
183
184
+ # Configure git for Docker containers to avoid "dubious ownership" errors
185
+ git config --global --add safe.directory /repo 2> /dev/null || true
186
+
184
187
# Get the latest tag to compare against, filtered by release type
185
188
if [[ " ${PKG_RELEASE_TYPE:- stable} " == " beta" ]]; then
186
189
# For beta releases, only look at beta tags
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ ENV QEMU_ARCH=${QEMU_ARCH:-x86_64} S6_KEEP_ENV=1
7
7
COPY build/qemu/qemu-${QEMU_ARCH}-static /usr/bin/
8
8
9
9
RUN apt-get update && \
10
- apt-get install -y build-essential debhelper debhelper dh-make devscripts jq
10
+ apt-get install -y build-essential debhelper debhelper dh-make devscripts jq git
11
11
12
12
WORKDIR /repo
13
13
You can’t perform that action at this time.
0 commit comments