Skip to content

Commit 76b86f3

Browse files
committed
fix(flake.nix): Always export bin
1 parent 43a149c commit 76b86f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

flake.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@
3232
shellHook = ''
3333
echo "Welcome to the Emacs development shell with Eask!"
3434
35+
# Export `bin` to PATH.
36+
export PATH="$PATH:$PWD/bin"
37+
3538
# Install if `node_modules` is missing
3639
if [ ! -d node_modules ]; then
3740
npm install --include=dev
38-
export PATH="$PATH:$PWD/bin"
3941
eask --version
4042
fi
4143
'';

0 commit comments

Comments
 (0)