Fix warning from "chown" about the syntax

The warning:

    chown: warning: '.' should be ':': ‘vagrant.vagrant’
This commit is contained in:
relan 2024-11-08 11:19:49 +03:00
parent 069f088b38
commit 5b57ced0a6
2 changed files with 4 additions and 4 deletions

View File

@ -10,6 +10,6 @@ cat <<EOF > $flutter_conf
"enabled": false
}
EOF
chown -R vagrant.vagrant $flutter_conf
chown -R vagrant:vagrant $flutter_conf
chmod -R 0644 $flutter_conf

View File

@ -26,8 +26,8 @@ chmod -R a+rX /opt/gradle
test -e /opt/gradle/bin || mkdir -p /opt/gradle/bin
ln -fs /home/vagrant/fdroidserver/gradlew-fdroid /opt/gradle/bin/gradle
chown -h vagrant.vagrant /opt/gradle/bin/gradle
chown vagrant.vagrant /opt/gradle/versions
chown -h vagrant:vagrant /opt/gradle/bin/gradle
chown vagrant:vagrant /opt/gradle/versions
chmod 0755 /opt/gradle/versions
GRADLE_HOME=/home/vagrant/.gradle
@ -44,5 +44,5 @@ systemProp.org.gradle.internal.http.connectionTimeout=600000
systemProp.org.gradle.internal.http.socketTimeout=600000
EOF
chown -R vagrant.vagrant $GRADLE_HOME/
chown -R vagrant:vagrant $GRADLE_HOME/
chmod -R a+rX $GRADLE_HOME/