summaryrefslogtreecommitdiff
path: root/.config/login.d/00_path.sh
diff options
context:
space:
mode:
Diffstat (limited to '.config/login.d/00_path.sh')
-rw-r--r--.config/login.d/00_path.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/.config/login.d/00_path.sh b/.config/login.d/00_path.sh
index a45f8fd..f4ca3a6 100644
--- a/.config/login.d/00_path.sh
+++ b/.config/login.d/00_path.sh
@@ -1,9 +1,7 @@
-#!/bin/sh
-
if type config-path &>/dev/null; then
config_path=config-path
else
# Bootstrap finding config-path
config_path="$HOME/.local/bin/config-path"
fi
-eval "$("$config_path" | sed 's/^/export /')"
+eval "$(IFS=$'\n'; lines=($("$config_path")); printf -- 'export %s\n' "${lines[@]}")"