removed /etc and /opt

This commit is contained in:
cutemeli
2025-12-22 10:48:14 +00:00
parent 5ce7ca2c5d
commit 10d1afbb17
32559 changed files with 0 additions and 6756692 deletions

View File

@@ -1,19 +0,0 @@
#!/usr/bin/env bash
# Usage: phpenv version-file-write <file> <version>
set -e
[ -n "$PHPENV_DEBUG" ] && set -x
PHPENV_VERSION_FILE="$1"
PHPENV_VERSION="$2"
if [ -z "$PHPENV_VERSION" ] || [ -z "$PHPENV_VERSION_FILE" ]; then
phpenv-help --usage version-file-write >&2
exit 1
fi
# Make sure the specified version is installed.
phpenv-prefix "$PHPENV_VERSION" >/dev/null
# Write the version out to disk.
echo "$PHPENV_VERSION" > "$PHPENV_VERSION_FILE"