mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-04-24 15:27:17 +00:00
this also requires to move default configuration files to share/ahriman. Thus the following features have been added * default configuration is not stored in /usr/share/ahriman/settings * package installed via PKGBUILD now copies files from /usr * configuration class now fallbacks to default in /usr
11 lines
198 B
Bash
Executable File
11 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
# Install dependencies and run test in container
|
|
|
|
set -ex
|
|
|
|
# install dependencies
|
|
pacman --noconfirm -Syu base-devel python-pip python-tox
|
|
|
|
# run test and check targets
|
|
make check tests
|