forked from urvishpatelce/lxd-app
5 lines
216 B
PHP
5 lines
216 B
PHP
<?php
|
|
if (count($argv) !== 3) return;
|
|
$config = json_decode(file_get_contents(__DIR__ . '/api/config.json'), true);
|
|
$config[$argv[1]] = $argv[2];
|
|
file_put_contents(__DIR__ . '/api/config.json', json_encode($config)); |