Y
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
wfleming
1996 days ago
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.)
link
efortis
1996 days ago
Thank you, that worked well. I added it to the post.
link