justinmeiners / srcweave

A literate programming system for any language.
https://www.jmeiners.com/literate-programming/
GNU General Public License v2.0
78 stars 4 forks source link

Fixed the srcweave script and added it to the install sequence #5

Closed increscent closed 2 years ago

increscent commented 2 years ago

When I installed srcweave the main script wasn't copied to /usr/local/bin so I added that to the makefile.

Also, I got this error when I first ran it:

/usr/bin/env: ‘sbcl --script’: No such file or directory
/usr/bin/env: use -[v]S to pass options in shebang lines

So I added the -S and it worked. Hopefully that doesn't break anything.

increscent commented 2 years ago

One more thing, you might want to use install instead of rsync because it's more common. I had to install rsync (which I really should have had anyway, but I use my own syncing program so I didn't have it).

justinmeiners commented 2 years ago

Thanks, I took most of your advice in #6

Can you try again and let me know if the new changes work?