* Don't leak VirtualInputDevice keyboards (#3720) * kms: skip simple-framebuffer devices (#3721) * DesktopFileManager::resolve_app_id no longer returns an app id with a * Fix the inotify event handling in OBS-URL: https://build.opensuse.org/package/show/X11:Wayland/mir?expand=0&rev=14
24 lines
664 B
Diff
24 lines
664 B
Diff
From 7e6144ce953c5fccc099f821d1e03a30c55b1534 Mon Sep 17 00:00:00 2001
|
|
From: "Shawn W. Dunn" <sfalken@cloverleaf-linux.org>
|
|
Date: Mon, 20 Jan 2025 07:19:37 -0800
|
|
Subject: [PATCH 2/2] remove use of env to call bash
|
|
|
|
Change shebang from #!/usr/bin/env bash, to #!/usr/bin/bash
|
|
---
|
|
examples/miral-shell/miral-app.sh | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/examples/miral-shell/miral-app.sh b/examples/miral-shell/miral-app.sh
|
|
index 11d4dde..6c8b6bd 100755
|
|
--- a/examples/miral-shell/miral-app.sh
|
|
+++ b/examples/miral-shell/miral-app.sh
|
|
@@ -1,4 +1,4 @@
|
|
-#!/usr/bin/env bash
|
|
+#!/usr/bin/bash
|
|
|
|
miral_server=miral-shell
|
|
gdb=""
|
|
--
|
|
2.48.1
|
|
|