From 1166b5b4479f3d158653c9765aaf67dfd75202c3 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Tue, 15 Jun 2021 17:52:30 -0400 Subject: [PATCH] Fix shell path --- README.org | 4 ++-- shell.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 75d9372..0c110c9 100644 --- a/README.org +++ b/README.org @@ -395,8 +395,8 @@ in mkShell { git ]; shellHook = '' - export FLAKE=$(pwd) - export PATH=$FLAKE/bin:${nixBin}/bin:$PATH" + export FLAKE="$(pwd)" + export PATH="$FLAKE/bin:${nixBin}/bin:$PATH" ''; } #+END_SRC diff --git a/shell.nix b/shell.nix index 2891792..a5ce9d8 100644 --- a/shell.nix +++ b/shell.nix @@ -13,7 +13,7 @@ in mkShell { git ]; shellHook = '' - export FLAKE=$(pwd) - export PATH=$FLAKE/bin:${nixBin}/bin:$PATH" + export FLAKE="$(pwd)" + export PATH="$FLAKE/bin:${nixBin}/bin:$PATH" ''; }