Unified Linux package creation into single script 'setup/Linux/createPackages.sh' that uses 'linuxdeployqt' for both the '.tar.gz' and '.AppImage' package.
9 lines
176 B
Bash
Executable File
9 lines
176 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Are you sure want to delete your Sourcetrail config?"
|
|
printf 'enter [y/n] '
|
|
read ans
|
|
case ${ans:=y} in [yY]*) ;; *) exit ;; esac
|
|
|
|
rm -rf ~/.config/sourcetrail
|