From: Alyssa Ross <hi@alyssa.is>
To: Cole Helbling <cole.e.helbling@outlook.com>
Cc: devel@spectrum-os.org
Subject: [PATCH nixpkgs v2] spectrumPackages.spectrum-vm: fix without Wayland
Date: Tue, 16 Mar 2021 01:09:10 +0000 [thread overview]
Message-ID: <20210316010910.ryhee36zgtoahdok@eve.qyliss.net> (raw)
In-Reply-To: <SJ0PR03MB558127A47E1E235BEA3B7CD6B3570@SJ0PR03MB5581.namprd03.prod.outlook.com>
[-- Attachment #1: Type: text/plain, Size: 1703 bytes --]
The surrounding "set +e"/"set -e" was an earlier attempt to fix this,
but I mixed -e up with -u. But as Cole points out, it's nicer to use
parameter expansion here anyway.
Thanks-to: Cole Helbling <cole.e.helbling@outlook.com>
---
On Tue, Aug 25, 2020 at 10:26:30AM -0700, Cole Helbling wrote:
> > -set +e
> > +set +u
> > if [ -n "$XDG_RUNTIME_DIR" ]
>
> Rather than using `set`, I, personally, would change this line to be:
>
> if [ -n "${XDG_RUNTIME_DIR:-}" ]
>
> (as well as the matching check for $WAYLAND_DISPLAY).
>
> Though this is just a matter of opinion, I think it is cleaner than
> using `set`s (but only really because I have no idea what all the `set`s
> do, without context).
>
> > then
> > set -- -s "$XDG_RUNTIME_DIR" "$@"
> > @@ -63,7 +63,7 @@ then
> > then set -- --wayland-sock "$XDG_RUNTIME_DIR/$WAYLAND_DISPLAY" "$@"
> > fi
> > fi
> > -set -e
> > +set -u
pkgs/os-specific/linux/spectrum/spectrum-vm/spectrum-vm.in | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/pkgs/os-specific/linux/spectrum/spectrum-vm/spectrum-vm.in b/pkgs/os-specific/linux/spectrum/spectrum-vm/spectrum-vm.in
index 4fa0287a805..a72c3896141 100755
--- a/pkgs/os-specific/linux/spectrum/spectrum-vm/spectrum-vm.in
+++ b/pkgs/os-specific/linux/spectrum/spectrum-vm/spectrum-vm.in
@@ -55,15 +55,13 @@ do
esac
done
-set +e
-if [ -n "$XDG_RUNTIME_DIR" ]
+if [ -n "${XDG_RUNTIME_DIR-}" ]
then
set -- -s "$XDG_RUNTIME_DIR" "$@"
- if [ -n "$WAYLAND_DISPLAY" ]
+ if [ -n "${WAYLAND_DISPLAY-}" ]
then set -- --wayland-sock "$XDG_RUNTIME_DIR/$WAYLAND_DISPLAY" "$@"
fi
fi
-set -e
exec "$crosvm" run \
-p init=/sbin/init \
--
2.30.0
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]
next prev parent reply other threads:[~2021-03-16 1:09 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-25 16:48 [PATCH nixpkgs] spectrumPackages.spectrum-vm: fix without Wayland Alyssa Ross
2020-08-25 17:26 ` Cole Helbling
2021-03-16 1:09 ` Alyssa Ross [this message]
2021-03-16 1:15 ` [PATCH nixpkgs v2] " Cole Helbling
2021-03-16 1:25 ` Alyssa Ross
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210316010910.ryhee36zgtoahdok@eve.qyliss.net \
--to=hi@alyssa.is \
--cc=cole.e.helbling@outlook.com \
--cc=devel@spectrum-os.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://spectrum-os.org/git/crosvm
https://spectrum-os.org/git/doc
https://spectrum-os.org/git/mktuntap
https://spectrum-os.org/git/nixpkgs
https://spectrum-os.org/git/spectrum
https://spectrum-os.org/git/ucspi-vsock
https://spectrum-os.org/git/www
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).