Skip to content
Snippets Groups Projects
Commit a921ed23 authored by Recolic's avatar Recolic :house_with_garden:
Browse files

.

parent 8a1c4e1f
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
# This is equivalent to running decrypted binary directly.
set -e
EXECNAME=$(basename "$0")
TMP_BIN="/tmp/.tmpbin-$EXECNAME"
if [ ! -f "$TMP_BIN" ]; then
gpg -d -o "$TMP_BIN" "$0.gpg"
chmod +x "$TMP_BIN"
fi
"$TMP_BIN" "$@"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment