mirror of
https://github.com/QRouland/UTPass.git
synced 2024-11-08 16:52:40 +00:00
12 lines
230 B
Bash
Executable File
12 lines
230 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )"
|
|
|
|
for LIB in "gnupg" "gpgme" "libassuan" "libgpg-error"
|
|
do
|
|
echo $LIB
|
|
cd $SCRIPTPATH/$LIB && git clean -xdf && git reset --hard HEAD
|
|
done
|
|
|
|
rm -rf $SCRIPTPATH/../local
|