Fix permissions issues caused by 986bc2052. (#7984)
For some reason, without `sudo` here, we get permissions issues in CI, so re-add it.
Austin S. Hemmelgarn committed
Feb 5, 2020 at 09:45 UTC
6caa93d1daa0f47dd8fa58b0564d1b6fd10a89f8
1 file changed
+1
-1
packaging/makeself/build-x86_64-static.sh
+1
-1
@@ -38,5 +38,5 @@ run docker run -a stdin -a stdout -a stderr -i -t -v \
38
/bin/sh /usr/src/netdata.git/packaging/makeself/build.sh "${@}"
39
40
if [ "${USER}" ]; then
41
- chown -R "${USER}" .
41
+ sudo chown -R "${USER}" .
42
fi