aboutsummaryrefslogtreecommitdiff
path: root/before
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2021-08-03 11:53:52 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2021-08-03 11:53:52 +0900
commite9193aac9559bfa46d82ac7989e1bf88c4a8f3d8 (patch)
tree0f8e0c8130118fcddf94639cc16d21160542afbe /before
parent580db52c3004cfdbd56aa2c8861c8fbc9fb5cdd8 (diff)
before: PATH を export するように修正
. "$GUIX_PROFILE/etc/profile" の影響でたまたま動作していたが正しくない ため
Diffstat (limited to 'before')
-rwxr-xr-xbefore2
1 files changed, 1 insertions, 1 deletions
diff --git a/before b/before
index 374ddd4..5738c9e 100755
--- a/before
+++ b/before
@@ -1,7 +1,7 @@
#!/bin/sh
set -eu
-PATH="${PATH}:/run/current-system/profile/bin:/run/current-system/profile/sbin"
+export PATH="${PATH}:/run/current-system/profile/bin:/run/current-system/profile/sbin"
GUIX_PROFILE="/var/lib/laminar/.config/guix/current"
. "$GUIX_PROFILE/etc/profile"