We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cfb071 commit aeb8cffCopy full SHA for aeb8cff
Dockerfile
@@ -51,6 +51,7 @@ ENV TIME_ZONE='UTC'
51
ENV REPOPICK_PICKS=''
52
ENV REPOPICK_TOPICS=''
53
ENV REPOPICK_PULLS=''
54
+ENV DEBUG=''
55
56
# Authentification
57
ENV TELEGRAM_TOKEN=''
scripts/init.sh
@@ -1,6 +1,9 @@
1
#!/bin/bash
2
3
-set -eEuo pipefail #-x
+set -eEuo pipefail
4
+if [[ 'true' == "${DEBUG}" ]]; then
5
+ set -x
6
+fi
7
8
# Add our functions
9
export PATH="${BIN_DIR}":"${PATH}"
0 commit comments