mirror of
https://github.com/ben-grande/qusal.git
synced 2024-12-28 17:09:23 -05:00
1b2f1ba941
Explicit end option parsing as the shell can be quite dangerous without it.
23 lines
569 B
Bash
Executable File
23 lines
569 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
##
|
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
set -eu
|
|
python_dir="/usr/lib/python3/dist-packages"
|
|
bin_dir="/usr/bin"
|
|
app_dir="/usr/share/applications"
|
|
tmp_dir="/tmp/electrum-upload"
|
|
|
|
rm -rf -- "${tmp_dir}"
|
|
mkdir -p -- "${tmp_dir}"
|
|
qfile-unpacker 0 "${tmp_dir}"
|
|
cd "${tmp_dir}"
|
|
cp -r -- electrum "${python_dir}"/
|
|
cp -- electrum.desktop "${app_dir}"/
|
|
cp -- run_electrum "${bin_dir}"/electrum
|
|
|
|
## Qube needs to shutdown for the app qube to have the uploaded files.
|
|
shutdown now
|