Warp icon indicating copy to clipboard operation
Warp copied to clipboard

Update button won't go away

Open itineriseu opened this issue 1 year ago • 1 comments

Dupe Check

Describe the bug

After update, warp restarts but the update button won't disappear. Platform is Ubuntu.

To reproduce

  1. Click the update button on the upper right when it appears.
  2. The update command is insterted in the terminal and just press enter.
  3. The sudo command will make linux to ask for the password. Enter password
  4. Warp updates and restarts.
  5. Update button should be hidden now but it is not. This part is the bug

Expected behavior

Update button should be hidden after update and restart, but it is not. This part is the bug

Screenshots

No response

Operating system

Linux

Operating system and version

Ubuntu 24.04.1 LTS

Shell Version

GNU bash, 5.2.21(1)-release (x86_64-pc-linux-gnu)

Current Warp version

v0.2024.08.27.08.02.stable_02

Regression

Yes, this bug started recently or with an X Warp version

Recent working Warp date

No response

Additional context

No response

Does this block you from using Warp daily?

No

Is this an issue only in Warp?

Yes, I confirmed that this only happens in Warp, not other terminals.

Warp Internal (ignore): linear-label:b9d78064-c89e-4973-b153-5178a31ee54e

None

itineriseu avatar Sep 10 '24 06:09 itineriseu

Hi @itineriseu Sorry about this. It's a known issue we're working on a fix and tracking it here. TLDR, updating ubuntu renames Warps's source file so it's not updating correctly. To work around this, please re-add the source file with the following:

sudo apt-get install wget gpg
wget -qO- https://releases.warp.dev/linux/keys/warp.asc | gpg --dearmor > warpdotdev.gpg
sudo install -D -o root -g root -m 644 warpdotdev.gpg /etc/apt/keyrings/warpdotdev.gpg
sudo sh -c 'echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/warpdotdev.gpg] https://releases.warp.dev/linux/deb stable main" > /etc/apt/sources.list.d/warpdotdev.list'
rm warpdotdev.gpg
sudo apt update && sudo apt install warp-terminal

Please let us know if this helps with the issue.

dannyneira avatar Sep 13 '24 17:09 dannyneira