mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-23 19:46:31 +01:00
11 lines
229 B
Bash
11 lines
229 B
Bash
#!/bin/sh
|
|
#
|
|
# SPDX-FileCopyrightText: 2026 live-bootstrap contributors
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
set -ex
|
|
|
|
if [ "${PAYLOAD_REQUIRED}" = True ]; then
|
|
mkdir -p /external/distfiles
|
|
payload-import /external/distfiles
|
|
fi
|