There was an error while loading. Please reload this page.
1 parent caf66bb commit c88cc8eCopy full SHA for c88cc8e
2 files changed
entrypoint.sh
@@ -999,6 +999,12 @@ EOF
999
echo "PS1='${ps1}'" >>"${BASH_PROFILE}"
1000
fi
1001
1002
+ # Also in the manual mode + useful misc.
1003
+ if ! [ -s "/root/.bashrc" ]; then
1004
+ cp -v /etc/skel/.* /root/
1005
+ sed -i 's/^#\(force_color_prompt=yes\)/\1/g' /root/.bashrc
1006
+ fi
1007
+
1008
if [ -f "${VIRTME_PREPARE_POST}" ]; then
1009
# shellcheck source=/dev/null
1010
source "${VIRTME_PREPARE_POST}"
run.sh
@@ -12,6 +12,7 @@ VIRTME_GIT_DIR="$(realpath "$(git rev-parse --git-common-dir)")"
12
VIRTME_REAL_DIR="$(realpath .virtme)"
13
14
HOME_DIR="$(realpath "$(dirname "${0}")/.home")"
15
+mkdir -p "${HOME_DIR}"
16
17
envs=()
18
for env in "${!INPUT_@}"; do
0 commit comments