mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-18 10:51:04 +02:00
11 lines
379 B
Bash
Executable File
11 lines
379 B
Bash
Executable File
#!/bin/bash
|
|
# ----------------------------------------------------------------------------
|
|
# Echoes project-level directory if a source file within is newer than the
|
|
# target directory.
|
|
# ----------------------------------------------------------------------------
|
|
|
|
[ ${1/*\//} = "package-info.java" ] && exit 0
|
|
|
|
project=${1/src*/}
|
|
[ ${project}target -nt $1 ] || echo ${project}
|