Compare commits

...

2 commits

Author SHA1 Message Date
themitosan 0c92ad070a Updater: small hotfix 2024-04-05 19:39:13 -03:00
themitosan c1497d31a5 Update: Include updater scripts for launcher (Requires git) 2024-04-05 19:36:09 -03:00
2 changed files with 21 additions and 0 deletions

11
Update.bat Normal file
View file

@ -0,0 +1,11 @@
@echo off
cls
title Updating fpPS4 Temmie's Launcher - Please Wait...
echo.
echo Updating fpPS4 Temmie's Launcher - Please wait
echo IMPORTANT: Make sure to have Git installed on your OS!
echo.
git reset --hard
git pull
pause
exit

10
Update.sh Normal file
View file

@ -0,0 +1,10 @@
stty -echo
clear
echo
echo "Updating fpPS4 Temmie's Launcher - Please Wait..."
echo "IMPORTANT: Make sure to have git installed on your OS / Distro!"
echo
git reset --hard
git pull
stty echo
exit