Skip to content

Commit

Permalink
Fix postInstall name
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 Sep 29, 2023
1 parent 3de322e commit eca2a33
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 eca2a33

Please sign in to comment.