mirror of
https://github.com/sunknudsen/privacy-guides.git
synced 2025-02-23 17:43:56 +00:00
12 lines
146 B
Bash
Executable File
12 lines
146 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -e
|
|
|
|
printf "%s\n" "Restoring…"
|
|
. qr-restore.sh
|
|
|
|
if [ -n "$secret" ]; then
|
|
printf "%s\n" "Backing up…"
|
|
. qr-backup.sh
|
|
fi
|