Skip to content

Commit

Permalink
examples: Quote shell variables
Browse files Browse the repository at this point in the history
It isn't caught by shellcheck, but it should be nice to always do so.
  • Loading branch information
lantw44 authored and lazka committed Oct 8, 2019
1 parent e8b4887 commit 8714245
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/jhbuild-session
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ export PATH LD_LIBRARY_PATH PYTHONPATH PKG_CONFIG_PATH GDK_USE_XFT XDG_DATA_DIRS

# Pick up systemd units defined in jhbuild
mkdir -p "$XDG_RUNTIME_DIR/systemd/user.control"
command cp -r ${GNOME}/lib/systemd/user/* "$XDG_RUNTIME_DIR/systemd/user.control"
command cp -r "${GNOME}/lib/systemd/user/"* "$XDG_RUNTIME_DIR/systemd/user.control"
systemctl --user daemon-reload

#exec valgrind --tool=memcheck --log-file=/tmp/session-grind.log ${GNOME}/bin/gnome-session
exec ${GNOME}/bin/gnome-session --debug
#exec valgrind --tool=memcheck --log-file=/tmp/session-grind.log "${GNOME}/bin/gnome-session"
exec "${GNOME}/bin/gnome-session" --debug

0 comments on commit 8714245

Please sign in to comment.