Skip to content

Commit 288b559

Browse files
committed
fixed the backup feature
1 parent 15b737f commit 288b559

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![License: MIT](https://img.shields.io/badge/License-MIT-blueviolet.svg)](https://opensource.org/licenses/MIT)
22
[![Release Version](https://img.shields.io/github/v/tag/mi5hmash/SteamDeckBTRFS?label=Tool%20Version)](https://github.com/mi5hmash/SteamDeckBTRFS/releases/latest)
3-
[![Latest Supported SteamOS](https://img.shields.io/badge/Latest%20Supported%20SteamOS-v3.6.21%20--%20build%2020241212.1-seagreen)](#)
3+
[![Latest Supported SteamOS](https://img.shields.io/badge/Latest%20Supported%20SteamOS-v3.6.22%20--%20build%2020250224.1-seagreen)](#)
44
[![Visual Studio Code](https://custom-icon-badges.demolab.com/badge/Visual%20Studio%20Code-0078d7.svg?logo=vsc&logoColor=white)](https://code.visualstudio.com/)
55

66
> [!IMPORTANT]

SteamDeckBTRFS.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -651,7 +651,7 @@ done
651651
_tarPack() {
652652
local _s=0 # status - preassume function will succeed
653653
cd -- "$1" || return
654-
tar -cf -- * | gzip -9 > "$OLDPWD/$2"
654+
tar -cf - . | gzip -9 > "$OLDPWD/$2"
655655
_s=${PIPESTATUS[0]}
656656
cd -- "$OLDPWD" || return
657657
[ "$_s" = 0 ]
@@ -1014,7 +1014,7 @@ echo_I "You can safely close this window now."; exit
10141014
SESSION_GUID="$(uuidgen | tr "[:lower:]" "[:upper:]")"; readonly SESSION_GUID
10151015
ROOT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd); readonly ROOT_DIR
10161016
declare -r TOOL_NAME="SteamDeckBTRFS"
1017-
declare -r TOOL_VERSION="v2.0.9"
1017+
declare -r TOOL_VERSION="v2.0.10"
10181018
declare -ri PACKAGE_VERSION="102"
10191019
declare -r unknown="unknown"
10201020
declare -r ps3_1="Enter the number of your choice: "

0 commit comments

Comments
 (0)