mirror of
https://gitlab.com/adhami3310/Impression.git
synced 2025-10-05 16:22:42 +02:00
12 lines
209 B
Bash
Executable File
12 lines
209 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
BUILD_DIR="translation-build/"
|
|
if [ -d "$BUILD_DIR" ]; then
|
|
rm -r translation-build
|
|
fi
|
|
|
|
meson translation-build
|
|
meson compile -C translation-build impression-pot
|
|
|
|
rm -r translation-build
|