change order to parse for gettext after page code is generated

This commit is contained in:
einhorn_b 2021-05-20 16:15:47 +02:00
parent b615340875
commit 4d07ac3a65
2 changed files with 5 additions and 4 deletions

View File

@ -12,15 +12,16 @@ COPY ./dependencies/cmake-modules ./dependencies/cmake-modules
COPY ./dependencies/spirit-po ./dependencies/spirit-po
COPY ./dependencies/tinf ./dependencies/tinf
COPY ./scripts ./scripts
RUN cd scripts && \
chmod +x compile_pot.sh && \
./compile_pot.sh
RUN mkdir build && \
cd build && \
cmake -DCMAKE_BUILD_TYPE=Release .. && \
make -j$(nproc) Gradido_LoginServer
RUN cd scripts && \
chmod +x compile_pot.sh && \
./compile_pot.sh
#########################################################################################################
# run release

View File

@ -3,10 +3,10 @@
cd ../scripts
chmod +x compile_pot.sh
./compile_pot.sh
cd ../build
cmake -DCMAKE_BUILD_TYPE=Debug ..
./compile_pot.sh
make -j$(nproc) Gradido_LoginServer
chmod +x ./bin/Gradido_LoginServer