Skip to content

Commit

Permalink
fix: Permissions issue
Browse files Browse the repository at this point in the history
geoip.dat and geosite.dat should be 755, not 644.
  • Loading branch information
dctxmei committed Apr 29, 2020
1 parent 9c8f7fb commit c5deaa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install-dat-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ download_geosite() {

rename_new() {
for DAT in 'geoip' 'geosite'; do
mv "${V2RAY}$DAT.dat.new" "${V2RAY}$DAT.dat"
install -m 755 "${V2RAY}$DAT.dat.new" "${V2RAY}$DAT.dat"
rm "${V2RAY}$DAT.dat.sha256sum.new"
done
}
Expand Down

0 comments on commit c5deaa3

Please sign in to comment.