Skip to content

Commit

Permalink
Fix postInstall name (#406)
Browse files Browse the repository at this point in the history
The link to the manual specifies that it should be postInstall, not postInstallPhase
  • Loading branch information
pingiun authored Oct 1, 2023
1 parent 3de322e commit af842d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/customizing_builds.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ craneLib.buildPackage {
fi
'';
# Lastly, add a postInstallPhase to install additional items after
# Lastly, add postInstall to install additional items after
# the default installPhase has run and installed the package binaries
postInstallPhase = ''
postInstall = ''
echo "hello world" > $out/hello.txt
# also install the README.md for good measure
cp README.md $out/
Expand Down

0 comments on commit af842d7

Please sign in to comment.