We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b36b6d6 commit 426fa44Copy full SHA for 426fa44
bin/login-hedgedoc-via-gitlab.sh
@@ -1,4 +1,15 @@
1
#!/usr/bin/env bash
2
+# Documentation & Code: https://github.com/hedgedoc/cli
3
+
4
+### Bash environment setup
5
+# http://redsymbol.net/articles/unofficial-bash-strict-mode/
6
+# https://www.gnu.org/software/bash/manual/html_node/The-Set-Builtin.html
7
+set -o errexit
8
+set -o errtrace
9
+set -o nounset
10
+set -o pipefail
11
12
+##############################################################################
13
14
username=${1}; shift
15
password=${1}; shift
0 commit comments