You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Very minor issue: Markdown needs to be installed in order to run the dev setup due to the README.md file itself. So, it should probably be added to the list of install dependencies in the README.md file itself or removed from the Tuprules file.
$ tup
[ tup ] [0.000s] Scanning filesystem...
[ tup ] [0.005s] Reading in new environment variables...
[ tup ] [0.005s] No Tupfiles to parse.
[ tup ] [0.005s] No files to delete.
[ tup ] [0.006s] Executing Commands...
* 1) markdown < README.md > README.html
/bin/sh: markdown: command not found
*** tup errors ***
*** Command ID=235 failed with return value 127
My solution was to install markdown via homebrew:
$ brew install markdown
==> Downloading http://daringfireball.net/projects/downloads/Markdown_1.0.1.zip
######################################################################## 100.0%
🍺 /usr/local/Cellar/markdown/1.0.1: 2 files, 40K, built in 2 seconds
$ which markdown
/usr/local/bin/markdown
$ tup
[ tup ] [0.000s] Scanning filesystem...
[ tup ] [0.004s] Reading in new environment variables...
[ tup ] [0.004s] No Tupfiles to parse.
[ tup ] [0.004s] No files to delete.
[ tup ] [0.004s] Executing Commands...
1) [0.100s] markdown < README.md > README.html
[ ] 100%
[ tup ] [0.124s] Updated.
The rest of the setup was a success, though!
The text was updated successfully, but these errors were encountered:
Very minor issue: Markdown needs to be installed in order to run the dev setup due to the README.md file itself. So, it should probably be added to the list of install dependencies in the README.md file itself or removed from the Tuprules file.
My solution was to install markdown via homebrew:
The rest of the setup was a success, though!
The text was updated successfully, but these errors were encountered: