Skip to content
Snippets Groups Projects
Unverified Commit 450a7a24 authored by Nick Jones's avatar Nick Jones
Browse files

Fix tilde expansion in development environment function library

Due to how bash expands tildes, the `~` is treated literally here and
results in a folder in the Vagrant user's home directory called `~`.

This commit switches to using the `$HOME` environment variable instead.
parent c5dc89ca
No related branches found
No related tags found
No related merge requests found
......@@ -25,7 +25,7 @@ function config_defaults {
export KAYOBE_CONFIG_SOURCE_PATH="${KAYOBE_CONFIG_SOURCE_PATH:-${KAYOBE_SOURCE_PATH}/config/src/kayobe-config}"
# Path to the kayobe virtual environment.
export KAYOBE_VENV_PATH="${KAYOBE_VENV_PATH:-~/kayobe-venv}"
export KAYOBE_VENV_PATH="${KAYOBE_VENV_PATH:-${HOME}/kayobe-venv}"
# Whether to build container images for the seed services. If 0, they will
# be pulled.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment