Skip to content

Commit

Permalink
Merge branch 'master' of github.com:geo-data/cesium-terrain-server
Browse files Browse the repository at this point in the history
  • Loading branch information
Homme Zwaagstra committed Apr 12, 2016
2 parents 327c06d + 6dbbf45 commit d83a577
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ that Go does. Assuming that you have set the
installation is a matter of running `go install`:

```sh
go install github.com/geo-data/cesium-terrain-server
go get github.com/geo-data/cesium-terrain-server/cmd/cesium-terrain-server
```

A program called `cesium-terrain-server` should then be available under your
Expand Down
2 changes: 1 addition & 1 deletion stores/fs/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func (this *Store) Tile(tileset string, tile *stores.Terrain) (err error) {
}

func (this *Store) Layer(tileset string) ([]byte, error) {
filename := filepath.Join(tileset, "layer.json")
filename := filepath.Join(this.root, tileset, "layer.json")
return this.readFile(filename)
}

Expand Down

0 comments on commit d83a577

Please sign in to comment.