From 31724629b26599fee7a2db571ae44c460b3989cd Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sun, 5 Jan 2020 12:32:23 -0500 Subject: [PATCH] Fixed a bug in build.sh. Find was operating on the wrong path. --- build/build/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build/build.sh b/build/build/build.sh index 8fabe69..2910523 100755 --- a/build/build/build.sh +++ b/build/build/build.sh @@ -213,7 +213,7 @@ git clone -b $(git branch | grep \* | cut -f2 -d \ ) --recurse-submodules https: # Copy in the files. cp -Rv /tmp/stormux/files/files/* "${workdir}/root/" |& log # Generate translations: -find /tmp/stormux/locales -type f -iname '*.po' -exec bash -c ' +find /tmp/stormux/files/locales -type f -iname '*.po' -exec bash -c ' for i ; do # i is in file, o is outfile. language="$(grep "^\"Language: .*\\n" "${i}" | cut -d " " -f2 | cut -d "\\" -f1)"