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