1
0
mirror of https://github.com/chylex/Nextcloud-News.git synced 2025-04-16 04:15:42 +02:00

Add file_from_env.php

Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
This commit is contained in:
Benjamin Brahmer 2020-10-25 10:30:26 +01:00
parent d4570f387e
commit 9917bbe774
2 changed files with 26 additions and 2 deletions

View File

@ -164,8 +164,8 @@ appstore:
cp js/admin/Admin.js $(appstore_sign_dir)/$(app_name)/js/admin
# export the key and cert to a file
printf "%s" "$(app_private_key)" > "$(cert_dir)/$(app_name).key"
printf "%s" "$(app_public_crt)" > "$(cert_dir)/$(app_name).crt"
php ./bin/tools/file_from_env.php "app_private_key" "$(cert_dir)/$(app_name).key"
php ./bin/tools/file_from_env.php "app_public_crt" "$(cert_dir)/$(app_name).crt"
@if [ -f $(cert_dir)/$(app_name).key ]; then \
echo "Signing app files…"; \

24
bin/tools/file_from_env.php Executable file
View File

@ -0,0 +1,24 @@
#!/usr/bin/env php
<?php
/**
* Nextcloud - News
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Benjamin Brahmer <info@b-brahmer.de>
* @copyright Benjamin Brahmer 2020
*/
if ($argc < 2) {
echo "This script expects two parameters:\n";
echo "./file_from_env.php ENV_VAR PATH_TO_FILE\n";
exit;
}
# Read environment variable
$content = getenv($argv[1]);
file_put_contents($argv[2], $content);
echo "Done...\n";