mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-26 13:19:42 +00:00
10 lines
359 B
Bash
Executable File
10 lines
359 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# On Fedora $SNAP is under /var and there is some magic to map it to /snap.
|
|
# We need to handle that case and reset $SNAP
|
|
SNAP=$(echo $SNAP | sed -e "s|/var/lib/snapd||g")
|
|
# Create $XDG_RUNTIME_DIR if not exists (to be removed when https://pad.lv/1656340 is fixed)
|
|
[ -n "$XDG_RUNTIME_DIR" ] && mkdir -p $XDG_RUNTIME_DIR -m 700
|
|
|
|
exec "$@"
|