Skip to content

Commit

Permalink
fixed automatic downloading
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristo Isberg committed Dec 23, 2018
1 parent a09fbfa commit fe4e6d8
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions pawn.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,29 @@
},
"resources": [
{
"name": "gps.dll",
"platform": "windows",
"archive": false
},
{
"name": "gps.so",
"platform": "linux",
"archive": false
},
{
"name": "nodes.zip",
"name": "gps-windows.zip",
"platform": "windows",
"archive": true,
"includes": [
"gps.inc"
],
"plugins": [
"gps.dll"
],
"files": {
"GPS.dat": "scriptfiles/GPS.dat"
}
},
{
"name": "nodes.zip",
"name": "gps-linux.zip",
"platform": "linux",
"archive": true,
"includes": [
"gps.inc"
],
"plugins": [
"gps.so"
],
"files": {
"GPS.dat": "scriptfiles/GPS.dat"
}
Expand Down

0 comments on commit fe4e6d8

Please sign in to comment.