snapshot.sh
Bourne-Again shell script, ASCII text executable
1
#!/bin/bash
2
#
3
# Create a snapshot for comparison with the latest development version.
4
#
5
set -ueo pipefail
6
7
BUILD_DIR="_build_snapshot"
8
THEME_NAME="MateriaSnapshot"
9
10
if [[ ! -d "$BUILD_DIR" ]]; then
11
meson "$BUILD_DIR" -Dtheme_name="$THEME_NAME"
12
fi
13
meson install -C "$BUILD_DIR"
14