mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-10 21:31:53 +01:00
a37cceab67
* mavenize openHAB and integrate mavenized ESH repository Signed-off-by: Markus Rathgeb <maggu2810@gmail.com>
9 lines
283 B
Bash
Executable File
9 lines
283 B
Bash
Executable File
#!/bin/sh
|
|
|
|
find -type d -name "ESH-INF" | grep -v -e '/target/' -e 'src/main/resources/ESH-INF' | while read ESHINF_DIR; do
|
|
PROJECT_DIR="$(dirname "${ESHINF_DIR}")"
|
|
mkdir -p "${PROJECT_DIR}/src/main/resources"
|
|
mv "${ESHINF_DIR}" "${PROJECT_DIR}/src/main/resources"
|
|
done
|
|
|