mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-25 07:07:46 +01:00
fix temp source
This commit is contained in:
parent
2c030b317f
commit
b98b573523
1 changed files with 3 additions and 3 deletions
|
@ -121,7 +121,7 @@ if [ ${uploadLNDRESCUE} -eq 1 ]; then
|
|||
# run upload dialog and get result
|
||||
_temp="/var/cache/raspiblitz/.temp.tmp"
|
||||
/home/admin/config.scripts/lnd.backup.sh lnd-import-gui setup $_temp
|
||||
source <($_temp) 2>/dev/null
|
||||
source $_temp 2>/dev/null
|
||||
sudo rm $_temp
|
||||
|
||||
# if user canceled upload
|
||||
|
@ -143,7 +143,7 @@ if [ ${enterSEED} -eq 1 ]; then
|
|||
# start seed input and get results
|
||||
_temp="/var/cache/raspiblitz/.temp.tmp"
|
||||
/home/admin/config.scripts/lnd.backup.sh seed-import-gui $_temp
|
||||
source <($_temp) 2>/dev/null
|
||||
source $_temp 2>/dev/null
|
||||
sudo rm $_temp
|
||||
|
||||
# if user canceled the seed input
|
||||
|
@ -167,7 +167,7 @@ if [ ${uploadSCB} -eq 1 ]; then
|
|||
# start seed input and get results
|
||||
_temp="/var/cache/raspiblitz/.temp.tmp"
|
||||
/home/admin/config.scripts/lnd.backup.sh scb-import-gui setup $_temp
|
||||
source <($_temp) 2>/dev/null
|
||||
source $_temp 2>/dev/null
|
||||
sudo rm $_temp
|
||||
|
||||
# if user canceled the upload
|
||||
|
|
Loading…
Add table
Reference in a new issue