unsloth/studio/src-tauri/linux/postremove.sh
Wasim Yousef Said aa4e6af1a1
Rebrand Tauri desktop app as Unsloth (#7608)
* Rebrand Tauri desktop app as Unsloth

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Preserve desktop package upgrade identity

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

* Fix legacy Windows desktop upgrades

* Respect UI font scaling in Tauri branding

* Use readable desktop release filenames

* Set default UI font size to 15

* Compact sidebar chat rows

* Set sidebar chat rows to 29px

* Set sidebar chat rows to 30px

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: oobabooga <112222186+oobabooga@users.noreply.github.com>
2026-08-03 15:42:15 +02:00

11 lines
344 B
Bash
Executable file

#!/bin/sh
# SPDX-License-Identifier: AGPL-3.0-only
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
# Post-removal script for the Unsloth Debian package
# Runs non-interactively; never deletes user data or touches other users' homes.
case "${1:-}" in
upgrade|1|2) exit 0 ;;
esac
exit 0