mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
6 lines
123 B
Bash
6 lines
123 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
shift # get rid of the '-c' supplied by make.
|
||
|
|
echo running "$*" >>/tmp/make-cmds.log
|
||
|
|
time /bin/bash -c "$*"
|
||
|
|
|