april / decklist

The code behind decklist.org, which generates DCI Registration Sheets.
https://decklist.org/
MIT License
45 stars 20 forks source link

Clean up generatecards.sh #47

Closed Nightfirecat closed 6 years ago

Nightfirecat commented 6 years ago

set -e will stop execution if errors are encountered. (For instance, if the script is run on a Windows environment, /usr/bin/env python3 may not be set and will cause the Python script call to fail)

File descriptors starting with a glob, such as *.js are changed to be preceded with -- to ensure strangely-named files are not improperly interpreted as flags.

april commented 6 years ago

Well, that's annoying, GitHub.