blob: 819c0e1b9318d4c8be3820c6f9757b9d0f3939e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
set -e
# Optional: Import test library
source dev-container-features-test-lib
check "source-dir" bash -c "which git | grep /usr/bin/git"
check "gitconfig-location" bash -c "git config --system user.name devcontainer && ls /etc | grep gitconfig"
check "version" git --version
check "gettext" dpkg-query -l gettext
# Report result
reportResults
|