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