ea3f4dd459
ensure 4 spaces indentation is used everywhere. Change-Id: Ieb48faacb4c96b7b358771d70c17f2f22d0354f4
14 lines
293 B
Bash
Executable File
14 lines
293 B
Bash
Executable File
#!/bin/bash
|
|
# Store build-time environment and command line arguments
|
|
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
if [ -e "/tmp/in_target.d/dib_environment" ]; then
|
|
cp /tmp/in_target.d/dib_environment /etc/
|
|
fi
|
|
|
|
if [ -e "/tmp/in_target.d/dib_arguments" ]; then
|
|
cp /tmp/in_target.d/dib_arguments /etc/
|
|
fi
|