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