datafoo
datafoo
Coming late to the party but for me `check_pass` is useful and I do not understand why it was deprecated. If there was still confusion related to https://github.com/riverrun/argon2_elixir/issues/38, then improving...
If `$XDG_CONFIG_HOME` is either not set or empty, `$HOME/.config/git/ignore` should also be considered a variant, as per the documentation.
It is probably worth specifying the output of `nixops check` which shows some special: ```log [me@laptop:~/dev/mydeployments/deployment1.example.com]$ nixops check -d deployment1.example.com --include mymachine Machines state: +-----------+--------+----+-----------+----------+-----------+-------+-------+ | Name | Exists |...
Duplicate of #1545
@roberth @adisbladis @grahamc : according to the commit history, you are the most recently involved people. Do you still use NixOps?
Fixed in 3f8249a733986c034964ac8835e3bf62f787e7f3
This issue still exists on `NixOps 2.0.0-pre-5013072`. For information, my use case is to deploy a [`.pgpass`](https://www.postgresql.org/docs/current/libpq-pgpass.html) file. ```shell $ nixops --version NixOps 2.0.0-pre-5013072 $ nixops deploy -d mydeployment building...
Thank you @andrii-bodnar. I learnt about `trap` but this does not solve my issue entirely. Also the I cannot run the command in the background with `& lingui_pid=$!` because the...
My `.git/hooks/pre-commit` is exactly: ```bash #!/usr/bin/env bash # # Git pre-commit hook RED='\033[0;31m' GREEN='\033[0;32m' NC='\033[0m' message() { MESSAGE="$1" COLOR="$2" echo -e "${COLOR}${MESSAGE}${NC}" } error() { message "$1" "$RED"; exit 1...