Hacker News new | ask | show | jobs
by efortis 1996 days ago
I'm working on the Makefile, but I'm stuck with the `time ./make-production.js` task.

`$ which time

time: shell reserved word`

1 comments

You could use something like `sh -c 'time ...'` to work around that. (You might need bash instead of sh, it might depend on what sh is on your system.)
Thank you, that worked well. I added it to the post.