Skip to content

Commit f732e02

Browse files
committed
docker: silence a warning when fixing ownership
Silence this warning: > chown -R 1000.1000 /Unvanquished/build/release > chown: warning: '.' should be ':': '1000.1000'
1 parent ae842a8 commit f732e02

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/fix-ownership

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ source "$(dirname "${BASH_SOURCE[0]}")/common.sh"
2828

2929
if [ -d '/Unvanquished/build/release' ]
3030
then
31-
ownership="$(stat --format='%g.%u' '/Unvanquished/build/release')"
31+
ownership="$(stat --format='%g:%u' '/Unvanquished/build/release')"
3232
_exec chown -R "${ownership}" '/Unvanquished/build/release'
3333
fi

0 commit comments

Comments
 (0)