Files
kontor/script/bootstrap
T
tpeetz b1127130cd Setup scripts to bootstrap, build and update the aplication
refs #36

The scripts are created and will be extended when adding subprojects.

(cherry picked from commit f688fb939c0f754ab70a4c0a014f00e42ff2f9eb)
2026-01-30 10:44:30 +01:00

14 lines
240 B
Bash
Executable File

#!/bin/sh
# script/bootstrap: Resolve all dependencies that the application requires to run
set -e
cd "$(dirname "$0")/.."
if command -v podman &> /dev/null; then
sudo apt-get update &> /dev/null
sudo apt-get install podman
fi