summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Brahmer <info@b-brahmer.de>2020-10-25 10:30:26 +0100
committerBenjamin Brahmer <info@b-brahmer.de>2020-10-25 12:06:30 +0100
commit9917bbe77466b90bed6e3aa18b0954986a6a13b1 (patch)
tree7dcc6aa5664e3906c70f6322a357b3968d736019
parentd4570f387ed867dbc5429d8e24524b74f02c9490 (diff)
Add file_from_env.php
Signed-off-by: Benjamin Brahmer <info@b-brahmer.de>
-rw-r--r--Makefile4
-rwxr-xr-xbin/tools/file_from_env.php24
2 files changed, 26 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 55489464e..aab7591f2 100644
--- a/Makefile
+++ b/Makefile
@@ -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…"; \
diff --git a/bin/tools/file_from_env.php b/bin/tools/file_from_env.php
new file mode 100755
index 000000000..e63cda1c4
--- /dev/null
+++ b/bin/tools/file_from_env.php
@@ -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"; \ No newline at end of file