We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1d8bd commit f59a03dCopy full SHA for f59a03d
bin/install-password-argon2
@@ -9,7 +9,13 @@ if [[ ! $VERSION =~ ^master$ ]] && [[ "$(printf "7.2\n$VERSION" | sort -V | head
9
exit 0
10
fi
11
12
-LIBARGON2_INSTALL_DIR=$HOME/.phpenv/versions/$VERSION
+
13
+if [[ $VERSION =~ ^8.1 ]]; then
14
+ LIBARGON2_INSTALL_DIR=/usr
15
+else
16
+ LIBARGON2_INSTALL_DIR=$HOME/.phpenv/versions/$VERSION
17
+fi
18
19
20
git clone https://github.com/P-H-C/phc-winner-argon2.git libargon2
21
0 commit comments