diff --git a/repack.sh b/repack.sh index bbdcc16..c007650 100755 --- a/repack.sh +++ b/repack.sh @@ -71,7 +71,7 @@ echo "Fixing SecretKey" echo "Spoofing OS" find "./" -type f \( -name "*.js" -o -name "*.js.map" \) -print0 | while IFS= read -r -d $'\0' file; do # Use 'sed' to perform the replacement in-place - sed -i "s/a.t.WINDOWS/a.t.LINUX/g" "$file" + sed -i "s/n.t.WINDOWS/n.t.LINUX/g" "$file" sed -i "s/B.LINUX/B.WINDOWS/g" "$file" sed -i "s/t4T.WINDOWS/t4T[window.CUSTOM_TITLE_BAR ? 'LINUX' : 'WINDOWS']/g" "$file" done