Skip to content

Commit

Permalink
fix: add -n arg to tail in neovimWrapper.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
nvimtor authored and NicoElbers committed Sep 7, 2024
1 parent c0e636a commit 0331a51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/builders/neovimWrapper.nix
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ let
head -1 ${placeholder "out"}/bin/${name} > $BASHCACHE
# Add code
cat ${preWrapperShellFile} >> $BASHCACHE
tail +2 ${placeholder "out"}/bin/${name} >> $BASHCACHE
tail -n +2 ${placeholder "out"}/bin/${name} >> $BASHCACHE
cat $BASHCACHE > ${placeholder "out"}/bin/${name}
rm $BASHCACHE
''
Expand Down

0 comments on commit 0331a51

Please sign in to comment.