setName('encryption:show-key-storage-root')
->setDescription('Show current key storage root');
}
protected function execute(InputInterface $input, OutputInterface $output): int {
$currentRoot = $this->util->getKeyStorageRoot();
$rootDescription = $currentRoot !== '' ? $currentRoot : 'default storage location (data/)';
$output->writeln("Current key storage root: $rootDescription");
return 0;
}
}
stable28/sabre-dav-itip-broker'>3rdparty/stable28/sabre-dav-itip-broker
blob: 7cf446b9be570414d55c890d43067ab5331dca7d (
plain)
1
2
3
4
5
6
7
8
9
|
const merge = require('webpack-merge')
const common = require('./webpack.common.js')
module.exports = common.map(
config => merge(config, {
mode: 'production',
devtool: '#source-map',
})
)
|