Files
EndraApp/tests/update_appdata.sh
2025-02-02 09:22:21 +01:00

15 lines
262 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/llearuin/.local/share/Endra ./appdata
exit 0
"""
# reexecute this file in shell if it's run in python
import os
os.system(__file__)