mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-17 15:51:17 +00:00
14 lines
227 B
Bash
14 lines
227 B
Bash
#!/bin/sh
|
|
# SUMMARY: Check that tar output format build is reproducible
|
|
# LABELS:
|
|
|
|
set -e
|
|
|
|
# Source libraries. Uncomment if needed/defined
|
|
#. "${RT_LIB}"
|
|
. "${RT_PROJECT_ROOT}/_lib/lib.sh"
|
|
|
|
linuxkit pkg build --force .
|
|
|
|
exit 0
|