MKuranowski / WarsawGTFS

Creates GTFS feed from ZTM Warsaw data
https://mkuran.pl/gtfs/
MIT License
34 stars 9 forks source link

Gitignore WarsawGTFS binary generated by go build #44

Closed starsep closed 1 year ago

MKuranowski commented 1 year ago

and which source file would produce this binary?

starsep commented 1 year ago

Such a binary is created when running go build Before:

ls

data_curated  data_src  go.sum      readme.md  requirements.txt  warsawgtfs.py
data_rt       go.mod    license.md  realtime   static            warsawgtfs_realtime.go

After go build: ls

data_curated  data_src  go.sum      readme.md  requirements.txt  WarsawGTFS     warsawgtfs_realtime.go
data_rt       go.mod    license.md  realtime   static            warsawgtfs.py

git status


On branch master
Your branch is up to date with 'origin/master'.

Untracked files: (use "git add ..." to include in what will be committed) WarsawGTFS

nothing added to commit but untracked files present (use "git add" to track)

MKuranowski commented 1 year ago

Ah, I've thought it'd output warsawgtfs_relatime - that's the name of the main entry point.

Regardless, the binary name WarsawGTFS is confusing (since the binary doesn't do GTFS, it does GTFS-Realtime). I've updated the readme and .gitignore in 70af2fa71773f10f6641c311ca34f74896e94ada, thanks for the report.