forked from cromer/pamac-classic
13 lines
202 B
Bash
Executable File
13 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Generate translations for certain files such as polkit
|
|
pushd "${PWD}"/po
|
|
./create_pot_file.sh
|
|
./update_po_files.sh
|
|
make
|
|
make clean
|
|
popd
|
|
|
|
# Update the autovala environment
|
|
autovala update
|