Revert "Allow overriding self-update target file with envvar COMPOSER_SELF_UPDATE_TARGET"
Revert "Add docs for COMPOSER_SELF_UPDATE_TARGET, refs #8151" This reverts commitpull/8180/heade7eecc6901
. This reverts commitfaa7c5eea2
.
parent
e7eecc6901
commit
b4e5db1c70
|
@ -917,10 +917,6 @@ if you use Composer as super user at all times like in docker containers.
|
||||||
|
|
||||||
If set, the value is used as php's memory_limit.
|
If set, the value is used as php's memory_limit.
|
||||||
|
|
||||||
### COMPOSER_SELF_UPDATE_TARGET
|
|
||||||
|
|
||||||
If set, makes the self-update command write the new Composer phar file into that path instead of overwriting itself. Useful for updating Composer on read-only filesystem.
|
|
||||||
|
|
||||||
### COMPOSER_MIRROR_PATH_REPOS
|
### COMPOSER_MIRROR_PATH_REPOS
|
||||||
|
|
||||||
If set to 1, this env changes the default path repository strategy to `mirror` instead
|
If set to 1, this env changes the default path repository strategy to `mirror` instead
|
||||||
|
|
|
@ -351,10 +351,6 @@ TAGSPUBKEY
|
||||||
@copy($localFilename, $backupTarget);
|
@copy($localFilename, $backupTarget);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($targetFilename = getenv('COMPOSER_SELF_UPDATE_TARGET')) {
|
|
||||||
$localFilename = realpath($targetFilename) ?: $targetFilename;
|
|
||||||
}
|
|
||||||
|
|
||||||
rename($newFilename, $localFilename);
|
rename($newFilename, $localFilename);
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in New Issue