mirror of
https://github.com/emendir/EndraApp.git
synced 2026-01-22 04:39:04 -05:00
16 lines
260 B
Bash
Executable File
16 lines
260 B
Bash
Executable File
#!/bin/bash
|
|
""":"
|
|
script_dir="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
|
|
cd $script_dir
|
|
|
|
rm -rf appdata
|
|
cp -r /home/$USER/.local/share/Endra ./appdata
|
|
|
|
exit 0
|
|
"""
|
|
|
|
|
|
# reexecute this file in shell if it's run in python
|
|
import os
|
|
os.system(__file__)
|